BMFPolygonGeofence constructor

BMFPolygonGeofence({
  1. List<BMFLocCoordinate>? coordinateList,
  2. String? coordinateCount,
  3. String? geofenceId,
  4. String? customId,
  5. GeofenceActivateState? geofenceState,
  6. BMFLocationCoordType? coordType,
  7. GeofenceStyleType? geofenceStyle,
})

Implementation

BMFPolygonGeofence({
  this.coordinateList,
  this.coordinateCount,
  String? geofenceId,
  String? customId,
  GeofenceActivateState? geofenceState,
  BMFLocationCoordType? coordType,
  GeofenceStyleType? geofenceStyle,
}) : super(
          geofenceId: geofenceId,
          customId: customId,
          geofenceState: geofenceState,
          coordType: coordType,
          geofenceStyle: geofenceStyle);