RenderDropdownButton constructor

RenderDropdownButton({
  1. required String text,
  2. required bool focused,
  3. required bool isOpen,
  4. required bool enabled,
  5. required Color focusColor,
  6. required Color backgroundColor,
})

Creates a RenderDropdownButton with the given display configuration.

Implementation

RenderDropdownButton({
  required this.text,
  required this.focused,
  required this.isOpen,
  required this.enabled,
  required this.focusColor,
  required this.backgroundColor,
});