CountryState constructor

const CountryState({
  1. required String code,
  2. required String name,
  3. String? countryCode,
  4. Map<String, dynamic>? extensions,
})

Implementation

const CountryState({
  required this.code,
  required this.name,
  this.countryCode,
  super.extensions,
});