MBGeofenceParameter constructor
MBGeofenceParameter({})
Initializes a geofence parameter.
- Parameters:
northEastLatitude
: ThenorthEastLatitude
.northEastLongitude
: ThenorthEastLongitude
.southWestLatitude
: ThesouthWestLatitude
.southWestLongitude
: ThesouthWestLongitude
.
Implementation
MBGeofenceParameter({
required this.northEastLatitude,
required this.northEastLongitude,
required this.southWestLatitude,
required this.southWestLongitude,
});