Bounds constructor

const Bounds({
  1. required LatLng northeast,
  2. required LatLng southwest,
})

Implementation

const Bounds({
  required this.northeast,
  required this.southwest,
});