AutoDropButtonStyle constructor

const AutoDropButtonStyle({
  1. List<BoxShadow>? boxShadow = const [BoxShadow(color: Color(0xFFCDE2FE), blurRadius: 3, offset: Offset(0, 1))],
  2. Border? border,
  3. MainAxisAlignment? mainAxisAlignment,
  4. Color backgroundColor = Colors.white,
  5. Color primaryColor = Colors.black87,
  6. BoxConstraints? constraints,
  7. double height = 50,
  8. double radius = 8.0,
  9. double? width,
  10. double elevation = 1,
  11. EdgeInsets padding = EdgeInsets.zero,
  12. ShapeBorder? shape,
})

Implementation

const AutoDropButtonStyle({
  this.boxShadow = const [
    BoxShadow(
      color: Color(0xFFCDE2FE),
      blurRadius: 3,
      offset: Offset(0, 1),
    ),
  ],
  this.border,
  this.mainAxisAlignment,
  this.backgroundColor = Colors.white,
  this.primaryColor = Colors.black87,
  this.constraints,
  this.height = 50,
  this.radius = 8.0,
  this.width,
  this.elevation = 1,
  this.padding = EdgeInsets.zero,
  this.shape,
});