DropDownUiState constructor

const DropDownUiState({
  1. required String label,
  2. @Default.new(null) String? placeHolder,
  3. @Default.new(null) String? selectedText,
  4. @Default.new(true) bool enabled,
})

Implementation

const factory DropDownUiState({
  required String label,
  @Default(null) String? placeHolder,
  @Default(null) String? selectedText,
  @Default(true) bool enabled,
}) = _DropDownUiState;