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