CountryButton constructor

const CountryButton({
  1. Key? key,
  2. IsoCode? country,
  3. void onCode(
    1. IsoCode
    )?,
  4. Set<IsoCode> available = const {},
  5. Set<IsoCode> restricted = const {},
  6. bool error = false,
})

Implementation

const CountryButton({
  super.key,
  this.country,
  this.onCode,
  this.available = const {},
  this.restricted = const {},
  this.error = false,
});