HereView.fromJson constructor

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

Implementation

HereView.fromJson(Map<String, dynamic> json) {
  type = json['_type'];
  viewId = json['ViewId'];
  if (json['Result'] != null) {
    result = [];
    json['Result'].forEach((v) {
      result!.add(HereViewResult.fromJson(v));
    });
  }
}