warn static method
Warning logging (potential issues)
Implementation
static void warn(
dynamic message, {
String tag = 'Reactiv',
Object? error,
StackTrace? stackTrace,
}) {
_log(
LogLevel.warning,
message,
tag: tag,
error: error,
stackTrace: stackTrace,
);
}