maybeScopeOf static method

TTableCellScope? maybeScopeOf(
  1. BuildContext context
)

Returns the nearest TTableCellScope, or null if none is in scope.

Implementation

static TTableCellScope? maybeScopeOf(BuildContext context) {
  return context.dependOnInheritedWidgetOfExactType<TTableCellScope>();
}