RemoteNotification constructor

const RemoteNotification({
  1. AndroidNotification? android,
  2. AppleNotification? apple,
  3. WebNotification? web,
  4. String? title,
  5. List<String> titleLocArgs = const <String>[],
  6. String? titleLocKey,
  7. String? body,
  8. List<String> bodyLocArgs = const <String>[],
  9. String? bodyLocKey,
})

Implementation

const RemoteNotification(
    {this.android,
    this.apple,
    this.web,
    this.title,
    this.titleLocArgs = const <String>[],
    this.titleLocKey,
    this.body,
    this.bodyLocArgs = const <String>[],
    this.bodyLocKey});