Contact constructor

const Contact({
  1. required List<Phone> phones,
  2. required String emailAddress,
})

Implementation

const Contact({
  required this.phones,
  required this.emailAddress,
});