TTableCellScope constructor
TTableCellScope({})
Creates a cell scope.
activeCellNotifier 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
TTableCellScope({
super.key,
required this.activeCellNotifier,
this.cellErrorBuilder,
this.cellErrors,
this.errorsNotifier,
required super.child,
}) : super(
notifier: errorsNotifier != null
? Listenable.merge([activeCellNotifier, errorsNotifier])
: activeCellNotifier,
);