LocationCircleGeofenceOption constructor

LocationCircleGeofenceOption({
  1. required BMFLocCoordinate centerCoordinate,
  2. required String radius,
  3. required BMFLocationCoordType coordType,
  4. required GeofenceActivateAction activateAction,
  5. bool? allowsBackgroundLocationUpdates,
  6. bool? pausesLocationUpdatesAutomatically,
  7. 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);