HubScopeChild constructor

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

Implementation

const HubScopeChild({
  super.key,
  required this.register,
  required this.child,
});