Contact constructor

  1. @JsonSerializable.new(includeIfNull: false)
const Contact({
  1. String? name,
  2. String? url,
  3. String? email,
})

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;