logInfo static method

dynamic logInfo({
  1. required String tag,
  2. required String message,
  3. LogFlow? logFlow,
})

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(),
  });
}