WindowsNotificationDetails constructor

const WindowsNotificationDetails({
  1. List<WindowsAction> actions = const <WindowsAction>[],
  2. List<WindowsInput> inputs = const <WindowsInput>[],
  3. List<WindowsImage> images = const <WindowsImage>[],
  4. List<WindowsRow> rows = const <WindowsRow>[],
  5. List<WindowsProgressBar> progressBars = const <WindowsProgressBar>[],
  6. Map<String, String> bindings = const <String, String>{},
  7. WindowsHeader? header,
  8. WindowsNotificationAudio? audio,
  9. WindowsNotificationDuration? duration,
  10. WindowsNotificationScenario? scenario,
  11. DateTime? timestamp,
  12. String? subtitle,
})

Creates a Windows notification from the given options.

Implementation

const WindowsNotificationDetails({
  this.actions = const <WindowsAction>[],
  this.inputs = const <WindowsInput>[],
  this.images = const <WindowsImage>[],
  this.rows = const <WindowsRow>[],
  this.progressBars = const <WindowsProgressBar>[],
  this.bindings = const <String, String>{},
  this.header,
  this.audio,
  this.duration,
  this.scenario,
  this.timestamp,
  this.subtitle,
});