ChatCustomNotification constructor

const ChatCustomNotification({
  1. required String type,
  2. String? title,
  3. String? body,
  4. NotificationSender? sender,
  5. VerifyToSendNotification? verify,
  6. OnDeniedToSendNotification? onDenied,
})

Implementation

const ChatCustomNotification({
  required this.type,
  super.title,
  super.body,
  super.sender,
  super.verify,
  super.onDenied,
});