NiceAccountPicker constructor

const NiceAccountPicker({
  1. Key? key,
  2. required List<NiceAccountEntry> accounts,
  3. ValueChanged<NiceAccountEntry>? onSelected,
  4. String? selectedId,
  5. String label = 'Account',
  6. String hint = 'Search accounts…',
})

Implementation

const NiceAccountPicker({
  super.key,
  required this.accounts,
  this.onSelected,
  this.selectedId,
  this.label = 'Account',
  this.hint = 'Search accounts…',
});