SelectUsersDialog constructor

const SelectUsersDialog({
  1. Key? key,
  2. required List<String> projectEmails,
  3. List<String> initialValue = const [],
  4. String title = 'Select users',
  5. String description = 'Choose one or more project users.',
  6. String confirmLabel = 'Apply',
  7. String cancelLabel = 'Cancel',
})

Implementation

const SelectUsersDialog({
  super.key,
  required this.projectEmails,
  this.initialValue = const [],
  this.title = 'Select users',
  this.description = 'Choose one or more project users.',
  this.confirmLabel = 'Apply',
  this.cancelLabel = 'Cancel',
});