CountryList constructor

CountryList({
  1. required int total,
  2. required List<Country> countries,
})

Implementation

CountryList({required this.total, required this.countries});