TrackingProfileRule constructor

const TrackingProfileRule({
  1. required TrackingProfile profile,
  2. required TrackingProfileRuleType type,
  3. ActivityType? activity,
  4. GeofenceAction? geofenceAction,
  5. String? geofenceIdentifier,
  6. double? speedKph,
  7. int cooldownSeconds = 30,
})

Implementation

const TrackingProfileRule({
  required this.profile,
  required this.type,
  this.activity,
  this.geofenceAction,
  this.geofenceIdentifier,
  this.speedKph,
  this.cooldownSeconds = 30,
});