Bounds constructor

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

Implementation

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