logInfo function
- String msg
Log a message to file
Implementation
void logInfo(String msg) {
// Append to file
File(getLogFilePath()).writeAsStringSync(msg, mode: FileMode.append);
}
Log a message to file
void logInfo(String msg) {
// Append to file
File(getLogFilePath()).writeAsStringSync(msg, mode: FileMode.append);
}