shouldLogErrors property
Whether errors caught by this ErrorBoundary should be logged using a Logger
.
Default:
true
Implementation
@override
bool? get shouldLogErrors =>
(props[_$key__shouldLogErrors__ErrorBoundaryProps] ?? null) as bool?;
Whether errors caught by this ErrorBoundary should be logged using a Logger
.
Default:
true
Implementation
@override
set shouldLogErrors(bool? value) =>
props[_$key__shouldLogErrors__ErrorBoundaryProps] = value;