TTableScope constructor

const TTableScope({
  1. Key? key,
  2. required TListController controller,
  3. required ValueNotifier<String?>? activeCellNotifier,
  4. required Widget child,
})

Implementation

const TTableScope({
  super.key,
  required this.controller,
  required this.activeCellNotifier,
  required super.child,
});