AviRouteBounds.fromMap constructor

AviRouteBounds.fromMap(
  1. Map<String, dynamic> map
)

Implementation

AviRouteBounds.fromMap(Map<String, dynamic> map)
    : northeastLatitude = map['northeastLatitude'].toDouble(),
      northeastLongitude = map['northeastLongitude'].toDouble(),
      southwestLatitude = map['southwestLatitude'].toDouble(),
      southwestLongitude = map['southwestLongitude'].toDouble()
;