ComponentRegistryProvider constructor Null safety

const ComponentRegistryProvider(
  1. {required Widget child,
  2. required List<Component> components,
  3. Key? key}
)

Implementation

const ComponentRegistryProvider(
    {required this.child, required this.components, Key? key})
    : super(key: key);