createLogger method
void
createLogger(
- String logName,
- int maxLevel,
- String dirPath,
- int keepDays,
- int compress,
- int compressLevel,
- int cipher,
- Uint8List? cipherKey,
- Uint8List? cipherNonce,
override
Implementation
@override
void createLogger(
String logName,
int maxLevel,
String dirPath,
int keepDays,
int compress,
int compressLevel,
int cipher,
Uint8List? cipherKey,
Uint8List? cipherNonce) {
methodChannel.invokeMethod('createLogger', <String, dynamic>{
"logName": logName,
"maxLevel": maxLevel,
"dirPath": dirPath,
"keepDays": keepDays,
"compress": compress,
"compressLevel": compressLevel,
"cipher": cipher,
"cipherKey": cipherKey,
"cipherNonce": cipherNonce,
});
}