BackgroundNotification constructor

BackgroundNotification(
  1. {required String contentTitle,
  2. required String contentText,
  3. int? when,
  4. required String channelId,
  5. required String channelName,
  6. bool enableLights = true,
  7. bool showBadge = true}
)

Implementation

BackgroundNotification({
  required this.contentTitle,
  required this.contentText,
  this.when,
  required this.channelId,
  required this.channelName,
  this.enableLights = true,
  this.showBadge = true,
});