of static method

TTableScope of(
  1. BuildContext context
)

Implementation

static TTableScope of(BuildContext context) {
  final result = maybeOf(context);
  assert(result != null, 'TTableScope not found in context');
  return result!;
}