CountryCodes constructor

CountryCodes({
  1. required String name,
  2. required String code,
  3. required String flagImagePath,
  4. required String phoneformat,
})

Implementation

CountryCodes({
  required this.name,
  required this.code,
  required this.flagImagePath,
  required this.phoneformat,
});