Phone constructor

  1. @JsonSerializable(includeIfNull: false)
const Phone({
  1. String? primary,
  2. String? secondary,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory Phone({
  String? primary,
  String? secondary,
}) = _Phone;