of static method
Retrieves the nearest TTableScope from the context (throws if not found).
Implementation
static TTableScope of(BuildContext context) {
final result = maybeOf(context);
assert(result != null, 'TTableScope not found in context');
return result!;
}