logInfo static method
Logs an informational message with optional flow tracking.
tag A short identifier for the log source.
message The detailed log message.
logFlow (Optional) Additional context about the log flow.
Implementation
static logInfo({
required String tag,
required String message,
LogFlow? logFlow,
}) {
_channel.invokeMethod(MethodNames.logInfo, {
'tag': tag,
'message': message,
'logFlow': logFlow?.toMap(),
});
}