WindowsAction constructor

const WindowsAction({
  1. required String content,
  2. required String arguments,
  3. WindowsActivationType activationType = WindowsActivationType.foreground,
  4. WindowsNotificationBehavior activationBehavior = WindowsNotificationBehavior.dismiss,
  5. WindowsActionPlacement? placement,
  6. Uri? imageUri,
  7. String? inputId,
  8. WindowsButtonStyle? buttonStyle,
  9. String? tooltip,
})

Constructs a Windows notification button from parameters.

Implementation

const WindowsAction({
  required this.content,
  required this.arguments,
  this.activationType = WindowsActivationType.foreground,
  this.activationBehavior = WindowsNotificationBehavior.dismiss,
  this.placement,
  this.imageUri,
  this.inputId,
  this.buttonStyle,
  this.tooltip,
});