Contact constructor

Contact({
  1. String? id,
  2. String? createdAt,
  3. String? name,
  4. String? surname,
  5. String? phoneNumber,
})

Implementation

Contact({this.id, this.createdAt, this.name, this.surname, this.phoneNumber});