LocationCircleGeofenceOption constructor
LocationCircleGeofenceOption({
- required BMFLocCoordinate centerCoordinate,
- required String radius,
- required BMFLocationCoordType coordType,
- required GeofenceActivateAction activateAction,
- bool? allowsBackgroundLocationUpdates,
- bool? pausesLocationUpdatesAutomatically,
- String? customId,
构造方法
Implementation
LocationCircleGeofenceOption({
required this.centerCoordinate,
required this.radius,
required BMFLocationCoordType coordType,
required GeofenceActivateAction activateAction,
bool? allowsBackgroundLocationUpdates,
bool? pausesLocationUpdatesAutomatically,
String? customId,
}) : super(
coordType: coordType,
activateAction: activateAction,
allowsBackgroundLocationUpdates: allowsBackgroundLocationUpdates,
pausesLocationUpdatesAutomatically:
pausesLocationUpdatesAutomatically,
customId: customId);