fromJson static method

LatLng? fromJson(
  1. dynamic json
)

根据传入的经纬度数组 [lat, lng] 序列化一个LatLng对象.

Implementation

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