NotificationDetails constructor

const NotificationDetails({
  1. AndroidNotificationDetails? android,
  2. DarwinNotificationDetails? iOS,
  3. DarwinNotificationDetails? macOS,
  4. LinuxNotificationDetails? linux,
})

Constructs an instance of NotificationDetails.

Implementation

const NotificationDetails({
  this.android,
  this.iOS,
  this.macOS,
  this.linux,
});