HereMapView.fromJson constructor

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

Implementation

HereMapView.fromJson(Map<String, dynamic> json) {
  topLeft = json['TopLeft'] != null ? GeoCoordinates.fromMap(json['TopLeft']) : null;
  bottomRight = json['BottomRight'] != null ? GeoCoordinates.fromMap(json['BottomRight']) : null;
}