TCountry constructor

const TCountry({
  1. required String name,
  2. required String code,
  3. required String dialCode,
  4. required String flag,
  5. required String format,
  6. required List<String> timezones,
})

Implementation

const TCountry({
  required this.name,
  required this.code,
  required this.dialCode,
  required this.flag,
  required this.format,
  required this.timezones,
});