latitude property

double? latitude

Implementation

double? get latitude {
  if (type == 'Point') {
    return coordinates?.elementAt(1);
  }

  return null;
}