CountryModel constructor

const CountryModel({
  1. required String name,
  2. required String dialCode,
  3. required String code,
  4. required String flag,
})

Implementation

const CountryModel({required this.name,
  // required this.nameKr,
  required this.dialCode, required this.code, required this.flag});