maybeOf static method

TTableScope? maybeOf(
  1. BuildContext context
)

Retrieves the nearest TTableScope from the context (nullable).

Implementation

static TTableScope? maybeOf(BuildContext context) {
  return context.dependOnInheritedWidgetOfExactType<TTableScope>();
}