lat property Null safety
Get the latitude of the Point.
Example:
Point(Coordinate(1, 2)).latitude; // 2
Implementation
double get lat {
return coordinate.latitude;
}
Get the latitude of the Point.
Example:
Point(Coordinate(1, 2)).latitude; // 2
double get lat {
return coordinate.latitude;
}