AGMLViewPoint.fromJson constructor

AGMLViewPoint.fromJson(
  1. Map json
)

Implementation

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