zipLog method

Future<File> zipLog()

Initializes file logging with the given parameters.

Implementation

Future<File> zipLog() async {
  if (logZ == null) {
    throw Exception("LogZ is not initialized.");
  }
  return await logZ!.zipLog();
}