lng property

double get lng

Get the longitude of the Point.

Example:

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

Implementation

double get lng {
  return coordinate.longitude;
}