logFlutterError method
Logs a flutter error with LogLevel.error.
Implementation
void logFlutterError(FlutterErrorDetails details) => log(
details.toString(),
level: LogLevel.error,
error: details.exception,
stackTrace: details.stack,
printStackTrace: false,
printError: false,
);