NiceAddressInput constructor

const NiceAddressInput({
  1. Key? key,
  2. NiceAddress? value,
  3. ValueChanged<NiceAddress>? onChanged,
  4. String label = 'Address',
  5. bool compact = false,
  6. List<MapEntry<String, String>>? countries,
})

Implementation

const NiceAddressInput({
  super.key,
  this.value,
  this.onChanged,
  this.label = 'Address',
  this.compact = false,
  this.countries,
});