NotificationAction constructor

const NotificationAction({
  1. required String label,
  2. void callback()?,
  3. bool isPrimary = false,
})

Implementation

const NotificationAction({
  required this.label,
  this.callback,
  this.isPrimary = false,
});