create static method

GeoProperty? create(
  1. GeoLocation? value
)

Creates a new GeoProperty

Implementation

static GeoProperty? create(GeoLocation? value) {
  if (value == null) {
    return null;
  }

  return GeoProperty('$propertyName:$value');
}