Contact constructor
- @JsonSerializable.new(includeIfNull: false)
Creates a Contact object.
Implementation
@JsonSerializable(includeIfNull: false)
const factory Contact({
/// The name of the contact person or organization.
String? name,
/// The URL pointing to the contact information.
String? url,
/// The email address of the contact person or organization.
String? email,
}) = _Contact;