Bounds constructor

Bounds({
  1. Location? northeast,
  2. Location? southwest,
})

Implementation

Bounds({Location? northeast, Location? southwest}) {
  _northeast = northeast;
  _southwest = southwest;
}