ResizableProps constructor

const ResizableProps({
  1. required List<ResizablePanelData> panels,
  2. ResizeDirection direction = ResizeDirection.horizontal,
  3. double handleSize = 8,
  4. bool showGrip = true,
})

Implementation

const ResizableProps({
  required this.panels,
  this.direction = ResizeDirection.horizontal,
  this.handleSize = 8,
  this.showGrip = true,
});