copy property

RectangleGeographicArea get copy

Create a new RectangleGeographicArea object with the same properties as the original.

Returns

  • a new Coordinates object with the same properties

Implementation

RectangleGeographicArea get copy {
  return RectangleGeographicArea(
    topLeft: topLeft.copy,
    bottomRight: bottomRight.copy,
  );
}