AGMLViewPoint.fromJson constructor
AGMLViewPoint.fromJson(
- Map json
Implementation
factory AGMLViewPoint.fromJson(Map<dynamic, dynamic> json) => AGMLViewPoint(
latitude: json["latitude"]?.toDouble(),
longitude: json["longitude"]?.toDouble(),
scale: json["scale"]?.toDouble(),
);