AndroidAppNotification constructor

const AndroidAppNotification({
  1. required String title,
  2. required String body,
  3. required String bigText,
  4. required String contentTitle,
  5. required String summaryText,
  6. required String channelId,
  7. required String channelName,
  8. required String channelDescription,
  9. required Importance importance,
  10. required Priority priority,
})

Implementation

const AndroidAppNotification({
  required this.title,
  required this.body,
  required this.bigText,
  required this.contentTitle,
  required this.summaryText,
  required this.channelId,
  required this.channelName,
  required this.channelDescription,
  required this.importance,
  required this.priority,
});