CreationPanel constructor

const CreationPanel({
  1. Curve? animationCurve,
  2. Duration? animationDuration,
  3. Color? backgorundColor,
  4. required Widget child,
  5. required double height,
  6. Key? key,
  7. Widget openCloseBuilder()?,
  8. Widget creationSectionButtonBuilder(
    1. BuildContext context,
    2. CreationSectionData creationSectionData,
    3. bool selected
    )?,
  9. Widget trashBuilder(
    1. bool onBlockEnter
    )?,
  10. Widget runBuilder(
    1. Color? enterBlockColor
    )?,
  11. Widget stopBuilder()?,
})

Implementation

const CreationPanel({
  this.animationCurve,
  this.animationDuration,
  this.backgorundColor,
  required this.child,
  required this.height,
  Key? key,
  this.openCloseBuilder,
  this.creationSectionButtonBuilder,
  this.trashBuilder,
  this.runBuilder,
  this.stopBuilder,
}) : super(key: key);