AGMLPortalItem.fromJson constructor

AGMLPortalItem.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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