isInSection static method

bool isInSection(
  1. BuildContext context
)

Returns true when context is inside a DraftModeUISection.

Implementation

static bool isInSection(BuildContext context) {
  return context
          .dependOnInheritedWidgetOfExactType<DraftModeUISectionScope>() !=
      null;
}