FileLogOutput constructor
FileLogOutput({})
Creates a new FileLogOutput instance.
writeLogToConsole - Whether to output logs to the console.
writeLogToFile - Whether to write logs to a file.
logFilePath - The path where the log file should be stored.
Implementation
FileLogOutput({
required this.writeLogToConsole,
required this.writeLogToFile,
required this.logFilePath,
});