isInSection static method
Returns true when context is inside a DraftModeUISection.
Implementation
static bool isInSection(BuildContext context) {
return context
.dependOnInheritedWidgetOfExactType<DraftModeUISectionScope>() !=
null;
}