CountryModel constructor

CountryModel({
  1. required String id,
  2. required String sortName,
  3. required String name,
  4. required String phoneCode,
})

Implementation

CountryModel(
    {required this.id,
    required this.sortName,
    required this.name,
    required this.phoneCode});