DropDownBoxStyle constructor

const DropDownBoxStyle({
  1. double? width,
  2. double? height,
  3. Color backgroundColor = Colors.transparent,
  4. BoxBorder? border,
  5. Decoration? decoration,
  6. EdgeInsetsGeometry margin = EdgeInsets.zero,
  7. EdgeInsetsGeometry padding = EdgeInsets.zero,
  8. bool expand = true,
})

Implementation

const DropDownBoxStyle({
  this.width,
  this.height,
  this.backgroundColor = Colors.transparent,
  this.border,
  this.decoration,
  this.margin = EdgeInsets.zero,
  this.padding = EdgeInsets.zero,
  this.expand = true,
});