spacingOf static method

SimpleSpacing spacingOf(
  1. BuildContext context
)

Implementation

static SimpleSpacing spacingOf(BuildContext context) {
  return context.dependOnInheritedWidgetOfExactType<Spacing>()?.spacing ??
      (throw AssertionError("No Spacing found in context. Please use the ResponsiveScaffold"));
}