NotificationAction constructor

const NotificationAction({
  1. required String content,
  2. required String arguments,
  3. NotificationActivationType activationType = NotificationActivationType.foreground,
  4. String? imageUri,
  5. String? inputId,
  6. NotificationButtonStyle? buttonStyle,
  7. bool contextMenu = false,
})

Implementation

const NotificationAction({
  required this.content,
  required this.arguments,
  this.activationType = NotificationActivationType.foreground,
  this.imageUri,
  this.inputId,
  this.buttonStyle,
  this.contextMenu = false,
});