logger property
An optional custom logger instance that will be used to log errors caught by this ErrorBoundary when shouldLogErrors is true.
Implementation
@override
Logger? get logger =>
(props[_$key__logger__ErrorBoundaryProps] ?? null) as Logger?;
An optional custom logger instance that will be used to log errors caught by this ErrorBoundary when shouldLogErrors is true.
Implementation
@override
set logger(Logger? value) => props[_$key__logger__ErrorBoundaryProps] = value;