fromJson static method

LatLng fromJson(
  1. dynamic json
)

Implementation

static LatLng fromJson(dynamic json) {
  return LatLng(json[0], json[1]);
}