WCollapsable constructor

const WCollapsable({
  1. Key? key,
  2. bool collapsed = false,
  3. bool shouldEnableStaticMode = true,
  4. Duration duration = const Duration(milliseconds: 500),
  5. Curve curve = Curves.fastOutSlowIn,
  6. Widget? child,
})

Implementation

const WCollapsable({
  super.key,
  this.collapsed = false,
  this.shouldEnableStaticMode = true,
  this.duration = const Duration(milliseconds: 500),
  this.curve = Curves.fastOutSlowIn,
  this.child,
});