build method
Builds the declarative UI Widget subtree based on the single reactive state.
Symmetrical to Flutter's StatelessWidget.build.
Ensures:
- Returns a non-null declarative UI Widget subtree.
Implementation
@override
Widget build() => InheritedCoralProviderWidget<T>(
provider: providerCoral.data, child: child);