of static method

Environment of(
  1. BuildContext context
)

Implementation

static Environment of(BuildContext context) {
  final provider = context.dependOnInheritedWidgetOfExactType<EnvironmentProvider>();
  return provider!.environment;
}