logInfo method

void logInfo(
  1. String context,
  2. String message, [
  3. List? args
])

Implementation

void logInfo(String context, String message, [List<dynamic>? args]) {
  _safeLog('info', context, _infoIcon, message, args);
}