latLng property Null safety

dynamic latLng

LatLng for the current run location

Implementation

get latLng => LatLng(
      (coords['latitude'] as int).toDouble(),
      (coords['longitude'] as int).toDouble(),
    );