rowDisabler property
Optional callback that returns true when the row with rowKey should have
its selection control disabled. When set, it is checked in addition to
disabled (either can disable a row).
For best performance, use a stable reference (e.g. a final field or a
bound method) rather than an inline closure: the table caches the
selectable-key set keyed on this callback's identity.
Implementation
final bool Function(Object? rowKey)? rowDisabler;