ContactInput constructor

ContactInput({
  1. String? description,
  2. String? emailAddress,
  3. String? phoneNumber,
  4. required ContactType type,
})

Implementation

factory ContactInput({
  String? description,
  String? emailAddress,
  String? phoneNumber,
  required ContactType type,
}) = _ContactInput;