DropdownButtonHideUnderline constructor

const DropdownButtonHideUnderline({
  1. Key? key,
  2. required Widget child,
})

Creates a DropdownButtonHideUnderline. A non-null child must be given.

Implementation

const DropdownButtonHideUnderline({
  Key? key,
  required Widget child,
}) : super(key: key, child: child);