geoLocation property

GeoLocation? geoLocation

The geo location of this event.

Implementation

GeoLocation? get geoLocation =>
    getProperty<GeoProperty>(GeoProperty.propertyName)?.location;
void geoLocation=(GeoLocation? value)

Sets the geo location

Implementation

set geoLocation(GeoLocation? value) =>
    setOrRemoveProperty(GeoProperty.propertyName, GeoProperty.create(value));