TTableCellScope constructor

const TTableCellScope({
  1. Key? key,
  2. required ValueNotifier<String?> notifier,
  3. 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,
});