DropdownButtonStyle constructor

const DropdownButtonStyle({
  1. MainAxisAlignment? mainAxisAlignment,
  2. Color backgroundColor = const Color.fromARGB(255, 43, 43, 43),
  3. double? height,
  4. double? width,
  5. double? elevation,
  6. Radius radius = radius20,
  7. EdgeInsets padding = const EdgeInsets.fromLTRB(0, 2, 10, 2),
})

Implementation

const DropdownButtonStyle({
  this.mainAxisAlignment,
  this.backgroundColor = const Color.fromARGB(255, 43, 43, 43),
  this.height,
  this.width,
  this.elevation,
  this.radius = radius20,
  this.padding = const EdgeInsets.fromLTRB(0, 2, 10, 2),
});