MultiSplitLayout constructor

const MultiSplitLayout({
  1. Key? key,
  2. required LayoutController controller,
  3. bool isEditable = true,
  4. required Widget itemBuilder(
    1. BuildContext context,
    2. String? contentId
    ),
  5. double dividerThickness = 8.0,
  6. Color? dividerColor,
  7. Color? hoverColor,
  8. Color? leafBorderColor,
  9. double? borderRadius,
})

Implementation

const MultiSplitLayout({
  Key? key,
  required this.controller,
  this.isEditable = true,
  required this.itemBuilder,
  this.dividerThickness = 8.0,
  this.dividerColor,
  this.hoverColor,
  this.leafBorderColor,
  this.borderRadius,
}) : super(key: key);