FlutterCountry constructor

FlutterCountry({
  1. required String code,
  2. required String continent,
  3. required String name,
})

Implementation

FlutterCountry({
  required this.code,
  required this.continent,
  required this.name,
});