ContactSendNotificationInput constructor

  1. @JsonSerializable.new(includeIfNull: false)
const ContactSendNotificationInput({
  1. required String from,
  2. required String to,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ContactSendNotificationInput({
  /// The DID of who this notification comes from.
  required String from,

  /// The DID of who this notification should go to.
  required String to,

  Map<String, dynamic>? $unknown,
}) = _ContactSendNotificationInput;