maybeOf static method

TTableDetailsScope? maybeOf(
  1. BuildContext context
)

Retrieves the nearest TTableDetailsScope from context (nullable).

Implementation

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