MPBounds constructor

MPBounds({
  1. required MPPoint northeast,
  2. required MPPoint southwest,
})

Build a MPBounds from a pair of coordinates

Implementation

MPBounds({required MPPoint northeast, required MPPoint southwest}) {
  _ne = northeast;
  _sw = southwest;
}