LocationInfo.fromJson constructor

LocationInfo.fromJson(
  1. 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,
      );