TTableScope constructor

const TTableScope({
  1. Key? key,
  2. required TListController controller,
  3. required bool dense,
  4. TTableExpansionMode? expansionMode,
  5. Future<bool> onWillCollapse(
    1. dynamic
    )?,
  6. required Widget child,
})

Creates a table scope.

Implementation

const TTableScope({
  super.key,
  required this.controller,
  required this.dense,
  this.expansionMode,
  this.onWillCollapse,
  required super.child,
});