ResizablePane.flex constructor

const ResizablePane.flex({
  1. Key? key,
  2. bool resizable = true,
  3. required Widget child,
  4. ValueChanged<double>? onResize,
  5. double? minSize,
  6. double? maxSize,
  7. double? collapsedSize,
  8. bool initialCollapsed = false,
  9. double? flex = 1,
})

Implementation

const ResizablePane.flex({
  super.key,
  this.resizable = true,
  required this.child,
  this.onResize,
  this.minSize,
  this.maxSize,
  this.collapsedSize,
  this.initialCollapsed = false,
  this.flex = 1,
})  : controller = null,
      initialSize = null;