ContactModel constructor

ContactModel({
  1. required String name,
  2. required String phone,
})

Implementation

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