MPAndroidNotificationsSettings constructor

const MPAndroidNotificationsSettings({
  1. required String channelId,
  2. required String icon,
  3. required String channelName,
  4. required String channelDescription,
})

Initializes a new android notification settings

Implementation

const MPAndroidNotificationsSettings({
  required this.channelId,
  required this.icon,
  required this.channelName,
  required this.channelDescription,
});