of static method

TListScope of(
  1. BuildContext context
)

Implementation

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