BackgroundNotification constructor

const BackgroundNotification({
  1. required String title,
  2. required String text,
  3. required String channelId,
  4. required String channelName,
  5. String? iconResourceName,
})

Implementation

const BackgroundNotification({
  required this.title,
  required this.text,
  required this.channelId,
  required this.channelName,
  this.iconResourceName,
});