of static method

TTableScope of(
  1. BuildContext context
)

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!;
}