TTableScope constructor

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

Creates a table scope.

Implementation

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