AGMLPortalItem.fromJson constructor
Implementation
factory AGMLPortalItem.fromJson(Map<String, dynamic> json) => AGMLPortalItem(
url: json["url"],
viewPoint: json["viewPoint"] != null
? AGMLViewPoint.fromJson(json["viewPoint"])
: null,
);