longitude property

double? longitude

Implementation

double? get longitude {
  if (type == 'Point') {
    return coordinates?.elementAt(0);
  }
  return null;
}