SDropdownMenuStyle constructor

const SDropdownMenuStyle({
  1. BoxBorder? border,
  2. Color barrierColor = Colors.black26,
  3. bool isSmall = true,
  4. bool showSelected = false,
  5. bool leadingIcon = false,
  6. bool hideIcon = false,
  7. BoxConstraints? constraints,
  8. Offset? offset,
  9. double? elevation,
  10. Color? color,
  11. EdgeInsets? padding,
  12. BorderRadius borderRadius = const BorderRadius.all(Radius.circular(15)),
})

Implementation

const SDropdownMenuStyle({
  this.border,
  this.barrierColor = Colors.black26,
  this.isSmall = true,
  this.showSelected = false,
  this.leadingIcon = false,
  this.hideIcon = false,
  this.constraints,
  this.offset,
  this.elevation,
  this.color,
  this.padding,
  this.borderRadius = const BorderRadius.all(Radius.circular(15)),
});