ContactModel constructor

ContactModel({
  1. String? id,
  2. required String phone,
  3. String? name,
  4. DateTime? createdAt,
})

Implementation

ContactModel({
  this.id,
  required this.phone,
  this.name,
  this.createdAt,
});