SelectCountryView constructor

const SelectCountryView({
  1. Key? key,
  2. Set<IsoCode> available = const {},
  3. Set<IsoCode> restricted = const {},
})

Implementation

const SelectCountryView({
  super.key,
  this.available = const {},
  this.restricted = const {},
});