Notification constructor

Notification(
  1. {required int processId,
  2. required String channel,
  3. required String payload}
)

Implementation

Notification({
  required this.processId,
  required this.channel,
  required this.payload,
});