ResizablePane.controlled constructor

const ResizablePane.controlled({
  1. Key? key,
  2. required ResizablePaneController controller,
  3. double? minSize,
  4. double? maxSize,
  5. double? collapsedSize,
  6. required Widget child,
  7. ValueChanged<double>? onSizeChangeStart,
  8. ValueChanged<double>? onSizeChange,
  9. ValueChanged<double>? onSizeChangeEnd,
  10. ValueChanged<double>? onSizeChangeCancel,
})

Implementation

const ResizablePane.controlled({
  Key? key,
  required ResizablePaneController this.controller,
  this.minSize,
  this.maxSize,
  this.collapsedSize,
  required this.child,
  this.onSizeChangeStart,
  this.onSizeChange,
  this.onSizeChangeEnd,
  this.onSizeChangeCancel,
})  : initialSize = null,
      initialFlex = null,
      initialCollapsed = null;