fallbackUIRenderer property
A renderer that will be used to render "fallback" UI instead of the child component tree that crashed.
Implementation
@override
ReactNode Function(dynamic error, ReactErrorInfo? info)?
get fallbackUIRenderer =>
(props[_$key__fallbackUIRenderer__ErrorBoundaryProps] ?? null)
as ReactNode Function(dynamic error, ReactErrorInfo? info)?;
A renderer that will be used to render "fallback" UI instead of the child component tree that crashed.
Implementation
@override
set fallbackUIRenderer(
ReactNode Function(dynamic error, ReactErrorInfo? info)? value) =>
props[_$key__fallbackUIRenderer__ErrorBoundaryProps] = value;