ContactSendNotificationInput constructor
- @JsonSerializable.new(includeIfNull: false)
const
ContactSendNotificationInput(
{ - required String from,
- required String to,
- 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;