of static method

_ResponsiveContainerState? of(
  1. BuildContext context
)

Retrieves the state of the closest ResponsiveContainer.

Implementation

static _ResponsiveContainerState? of(BuildContext context) {
  final _ResponsiveContainerState? result = context.findAncestorStateOfType<_ResponsiveContainerState>();
  return result;
}