error static method
Error logging (error conditions)
Implementation
static void error(
dynamic message, {
String tag = 'Reactiv',
Object? error,
StackTrace? stackTrace,
}) {
_log(
LogLevel.error,
message,
tag: tag,
error: error,
stackTrace: stackTrace,
);
}