phase3: improve arg-bang handler (allow ! in chains, ; terminator). 574->440

This commit is contained in:
2026-07-26 10:41:02 +08:00
parent 36f36b815f
commit 154d696e70
50 changed files with 138 additions and 138 deletions

View File

@@ -287,8 +287,8 @@ class DesktopContactUsState extends State<DesktopContactUs> {
_markers.clear();
_markers.add(Marker(
markerId: MarkerId('shop_position'),
position: LatLng(double.parse(widget.business.address!.lat),
double.parse(widget.business.address!.lng)),
position: LatLng(double.parse(widget.business.address!.lat!),
double.parse(widget.business.address!.lng!)),
infoWindow: InfoWindow(
title: S
.of(context)
@@ -304,8 +304,8 @@ class DesktopContactUsState extends State<DesktopContactUs> {
onMapCreated: _onMapCreated,
initialCameraPosition: CameraPosition(
target: LatLng(
double.parse(widget.business.address!.lat),
double.parse(widget.business.address!.lng)),
double.parse(widget.business.address!.lat!),
double.parse(widget.business.address!.lng!)),
zoom: 14.0,
),
onCameraMove: _onCameraMove,