SelectUsers constructor

const SelectUsers({
  1. Key? key,
  2. required List<String> projectEmails,
  3. required void onChanged(
    1. List<String>
    ),
  4. SelectUsersController? controller,
  5. TextEditingController? textController,
  6. bool autofocus = false,
  7. FocusNode? focusNode,
  8. List<String> initialValue = const [],
})

Implementation

const SelectUsers({
  super.key,
  required this.projectEmails,
  required this.onChanged,
  this.controller,
  this.textController,
  this.autofocus = false,
  this.focusNode,
  this.initialValue = const [],
});