NotificationResponse constructor

const NotificationResponse({
  1. required NotificationResponseType notificationResponseType,
  2. int? id,
  3. String? actionId,
  4. String? input,
  5. String? payload,
})

Constructs an instance of NotificationResponse

Implementation

const NotificationResponse({
  required this.notificationResponseType,
  this.id,
  this.actionId,
  this.input,
  this.payload,
});