DropdownColumn constructor

const DropdownColumn({
  1. required List<Widget> children,
  2. double maxHeight = double.infinity,
  3. Color? backgroundColor,
  4. double elevation = 3,
  5. bool scrollThumbAlwaysVisible = true,
})

Implementation

const DropdownColumn({
  required this.children,
  this.maxHeight = double.infinity,
  this.backgroundColor,
  this.elevation = 3,
  this.scrollThumbAlwaysVisible = true
});