NiceVatInput constructor

const NiceVatInput({
  1. Key? key,
  2. String? value,
  3. ValueChanged<String>? onChanged,
  4. String label = 'VAT Number',
  5. String defaultCountry = 'PL',
  6. List<String>? countries,
})

Implementation

const NiceVatInput({
  super.key,
  this.value,
  this.onChanged,
  this.label = 'VAT Number',
  this.defaultCountry = 'PL',
  this.countries,
});