ArcaneResizable constructor

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

Implementation

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