lat property

double get lat

Get the latitude of the Point.

Example:

Point(Coordinate(1, 2)).latitude; // 2

Implementation

double get lat {
  return coordinate.latitude;
}