dropdownMenuHeight property

  1. @override
Token get dropdownMenuHeight

Default height for dropdown menu (default: 200px, CSS variable: --naki-dropdown-menu-height).

Implementation

@override
Token get dropdownMenuHeight => component?.dropdownMenuHeight != null
    ? Token(
        value: component!.dropdownMenuHeight!.cssText,
        name: super.dropdownMenuHeight.name,
      )
    : super.dropdownMenuHeight;