WithForegroundService constructor

const WithForegroundService({
  1. Key? key,
  2. required GeofenceService geofenceService,
  3. String? notificationChannelId,
  4. String? notificationChannelName,
  5. String? notificationContentTitle,
  6. String? notificationContentText,
  7. required Widget child,
})

Implementation

const WithForegroundService({
  Key? key,
  required this.geofenceService,
  this.notificationChannelId,
  this.notificationChannelName,
  this.notificationContentTitle,
  this.notificationContentText,
  required this.child
})  : super(key: key);