NotificationConfig constructor

NotificationConfig({
  1. String defaultIcon = '@mipmap/ic_launcher',
  2. String downloadProgressNotificationTextTitle = 'Download',
  3. String downloadProgressNotificationTextBody = '',
  4. String downloadFailedNotificationTitleText = 'Download failed',
  5. String downloadFailedNotificationBodyText = 'An error occurred while downloading update. Check your internet connections and try again',
  6. bool showProgress = true,
  7. bool channelShowBadge = true,
})

Implementation

NotificationConfig({
  this.defaultIcon = '@mipmap/ic_launcher',
  this.downloadProgressNotificationTextTitle = 'Download',
  this.downloadProgressNotificationTextBody = '',
  this.downloadFailedNotificationTitleText = 'Download failed',
  this.downloadFailedNotificationBodyText =
      'An error occurred while downloading update. Check your internet connections and try again',
  this.showProgress = true,
  this.channelShowBadge = true,
});