width property

double get width

Calculates width of bounding box in degrees

Implementation

double get width => math.max(
  (northeast.lng - southwest.lng).abs(),
  epsilon
);