NotificationConfig constructor
NotificationConfig({
- String defaultIcon = '@mipmap/ic_launcher',
- String downloadProgressNotificationTextTitle = 'Download',
- String downloadProgressNotificationTextBody = '',
- String downloadFailedNotificationTitleText = 'Download failed',
- String downloadFailedNotificationBodyText = 'An error occurred while downloading update. Check your internet connections and try again',
- bool showProgress = true,
- 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,
});