AGMLMobileMapPackage.fromJson constructor

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

Implementation

factory AGMLMobileMapPackage.fromJson(Map<String, dynamic> json) => AGMLMobileMapPackage(
    id: json['id:'],
    path: json['path'],
    url: json['url'],
    viewPoint: json['viewPoint'] != null ? AGMLViewPoint.fromJson(json['viewPoint']) : null
);