SplitView constructor

SplitView({
  1. required Widget first,
  2. required Widget second,
  3. Axis axis = Axis.horizontal,
  4. int firstFlex = 1,
  5. int secondFlex = 1,
  6. int gap = 1,
  7. Widget? separator,
  8. Key? key,
})

Implementation

SplitView({
  required this.first,
  required this.second,
  this.axis = Axis.horizontal,
  this.firstFlex = 1,
  this.secondFlex = 1,
  this.gap = 1,
  this.separator,
  super.key,
});