fromJson static method

LatLng? fromJson(
  1. Map<String, dynamic>? json
)

Implementation

static LatLng? fromJson(Map<String, dynamic>? json) {
  if (json == null || json.isEmpty) return null;
  return LatLng(json['latitude'], json['longitude']);
}