ExpansionButton constructor

const ExpansionButton({
  1. Key? key,
  2. ExpansionButtonCallback? action,
  3. ExpansionButtonStyle? style,
  4. EdgeInsetsGeometry? padding,
  5. EdgeInsetsGeometry? margin,
  6. BorderRadius? borderRadius,
  7. bool? overlayDisabled,
  8. bool disabled = false,
  9. required Widget child,
})

Implementation

const ExpansionButton({
  Key? key,
  this.action,
  this.style,
  this.padding,
  this.margin,
  this.borderRadius,
  this.overlayDisabled,
  this.disabled = false,
  required this.child,
})  : shape = null,
      radius = null,
      super(key: key);