Contact constructor

const Contact({
  1. required String phoneNumber,
  2. required String firstName,
  3. required String lastName,
  4. required String vcard,
  5. required int userId,
})

Describes a user contact

Implementation

const Contact({
  required this.phoneNumber,
  required this.firstName,
  required this.lastName,
  required this.vcard,
  required this.userId,
});