HubScopeProvider constructor

const HubScopeProvider({
  1. Key? key,
  2. required HubScope scope,
  3. required Widget child,
})

Implementation

const HubScopeProvider({
  super.key,
  required this.scope,
  required super.child,
});