fromJson static method
根据传入的经纬度数组 [lat, lng] 序列化一个LatLng对象.
Implementation
static LatLng? fromJson(dynamic json) {
if (json == null) {
return null;
}
return LatLng(json[0], json[1]);
}
根据传入的经纬度数组 [lat, lng] 序列化一个LatLng对象.
static LatLng? fromJson(dynamic json) {
if (json == null) {
return null;
}
return LatLng(json[0], json[1]);
}