MinimizableView constructor

const MinimizableView({
  1. Key? key,
  2. void onInit(
    1. AnimationController
    )?,
  3. void onDispose()?,
  4. void onSizeChanged(
    1. Size
    )?,
  5. bool minimizationEnabled = true,
  6. double minimizationDelta = 50,
  7. required Widget child,
})

Implementation

const MinimizableView({
  super.key,
  this.onInit,
  this.onDispose,
  this.onSizeChanged,
  this.minimizationEnabled = true,
  this.minimizationDelta = 50,
  required this.child,
});