SendNotificationInputOptions constructor

SendNotificationInputOptions({
  1. int? senderType = 0,
  2. dynamic signer,
  3. required NOTIFICATION_TYPE type,
  4. required IDENTITY_TYPE identityType,
  5. NotificationOptions? notification,
  6. PayloadOptions? payload,
  7. dynamic recipients,
  8. required String channel,
  9. Graph? graph,
  10. String? ipfsHash,
  11. String? chatId,
  12. String? pgpPrivateKey,
  13. String? pgpPublicKey,
})

Implementation

SendNotificationInputOptions({
  this.senderType = 0,
  this.signer,
  required this.type,
  required this.identityType,
  this.notification,
  this.payload,
  this.recipients,
  required this.channel,
  this.graph,
  this.ipfsHash,
  this.chatId,
  this.pgpPrivateKey,
  this.pgpPublicKey,
});