TTableCellScope constructor
const
TTableCellScope({
- Key? key,
- required ValueNotifier<
String?> notifier, - required Widget child,
Creates a cell scope.
notifier is the shared ValueNotifier<String?> owned by the table
state. Pass null when the table is not editable; maybeOf will then
return null and all cells will render in read-only mode.
Implementation
const TTableCellScope({
super.key,
required ValueNotifier<String?> super.notifier,
required super.child,
});