LocationInfo.fromJson constructor
LocationInfo.fromJson(
- Map json_
Implementation
LocationInfo.fromJson(core.Map json_)
: this(
latLng: json_.containsKey('latLng')
? LatLng.fromJson(
json_['latLng'] as core.Map<core.String, core.dynamic>)
: null,
);