ExpansionButton.circle constructor

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

Implementation

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