LatLngBounds constructor Null safety

LatLngBounds(
  1. {required double west,
  2. required double east,
  3. required double south,
  4. required double north}
)

Implementation

LatLngBounds({
 required this.west,
 required this.east,
 required this.south,
 required this.north,
});