MBGeofenceParameter constructor

MBGeofenceParameter({
  1. required double northEastLatitude,
  2. required double northEastLongitude,
  3. required double southWestLatitude,
  4. required double southWestLongitude,
})

Initializes a geofence parameter.

  • Parameters:
    • northEastLatitude: The northEastLatitude.
    • northEastLongitude: The northEastLongitude.
    • southWestLatitude: The southWestLatitude.
    • southWestLongitude: The southWestLongitude.

Implementation

MBGeofenceParameter({
  required this.northEastLatitude,
  required this.northEastLongitude,
  required this.southWestLatitude,
  required this.southWestLongitude,
});