SelectComponent constructor

const SelectComponent({
  1. dynamic onChanged(
    1. dynamic
    )?,
  2. bool? enabled,
  3. List<MenuItemData> menuItemData = const [],
  4. required Color primaryColor,
  5. String? labelText,
  6. double? width,
  7. dynamic initialValue,
  8. Key? key,
})

Implementation

const SelectComponent(
    {this.onChanged,
    this.enabled,
    this.menuItemData = const [],
    required this.primaryColor,
    this.labelText,
    this.width,
    this.initialValue,
    Key? key})
    : super(key: key);