LocationBaseGeofenceOption constructor

LocationBaseGeofenceOption({
  1. required BMFLocationCoordType coordType,
  2. required GeofenceActivateAction activateAction,
  3. bool? allowsBackgroundLocationUpdates,
  4. bool? pausesLocationUpdatesAutomatically,
  5. String? customId,
})

Implementation

LocationBaseGeofenceOption(
    {required BMFLocationCoordType coordType,
    required this.activateAction,
    this.allowsBackgroundLocationUpdates,
    this.pausesLocationUpdatesAutomatically,
    this.customId})
    : super(coordType: coordType);