ErrorBoundary constructor
const
ErrorBoundary({
- Key? key,
- required Widget child,
- WidgetBuilder? fallbackBuilder,
- VoidCallback? onError,
- String? componentName,
Implementation
const ErrorBoundary({
super.key,
required this.child,
this.fallbackBuilder,
this.onError,
this.componentName,
});