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