Country constructor

Country({
  1. required String name,
  2. required String flag,
  3. required String iso2,
  4. required String iso3,
  5. required String prefix,
  6. required String currency,
})

Country constructor

Implementation

Country(
    {required this.name,
    required this.flag,
    required this.iso2,
    required this.iso3,
    required this.prefix,
    required this.currency});