CountryData constructor
Creates a CountryData instance.
Parameters
- IN name The country name.
- IN isoCode The ISO 3166-1 alpha-3 country code.
- IN flagImage The country flag image (optional).
Implementation
CountryData({
required this.name,
required this.isoCode,
this.flagImage,
});