SplitView.material constructor

const SplitView.material({
  1. Key? key,
  2. required Widget child,
  3. double childWidth = _kDefaultWidth,
  4. double breakpoint = _kDefaultBreakpoint,
  5. Widget? placeholder,
  6. String? title,
})

Implementation

const SplitView.material({
  Key? key,
  required this.child,
  this.childWidth = _kDefaultWidth,
  this.breakpoint = _kDefaultBreakpoint,
  this.placeholder,
  this.title,
})  : pageBuilder = _materialPageBuilder,
      super(key: key);