createLogger method

  1. @override
void createLogger(
  1. String logName,
  2. int maxLevel,
  3. String dirPath,
  4. int keepDays,
  5. int compress,
  6. int compressLevel,
  7. int cipher,
  8. Uint8List? cipherKey,
  9. 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,
  });
}