ContactModel constructor

ContactModel({
  1. String? id,
  2. required String phone,
  3. String? name,
  4. String? firstName,
  5. String? lastName,
  6. SexType? sex,
  7. String? userId,
  8. String? companyId,
  9. DateTime? createdAt,
  10. DateTime? updatedAt,
})

Implementation

ContactModel({
  this.id,
  required this.phone,
  this.name,
  this.firstName,
  this.lastName,
  this.sex,
  this.userId,
  this.companyId,
  this.createdAt,
  this.updatedAt,
});