NotificationSettings constructor

const NotificationSettings({
  1. required String title,
  2. required String body,
  3. String? stopButton,
  4. String? icon,
})

Constructs an instance of NotificationSettings.

Open PR if you want more features.

Implementation

const NotificationSettings({
  required this.title,
  required this.body,
  this.stopButton,
  this.icon,
});