enableLogs static method

Future<void> enableLogs()

Enables logs.

Implementation

static Future<void> enableLogs() async {
  try {
    await init();
    return _platform.ffmpegKitConfigEnableLogs();
  } on PlatformException catch (e, stack) {
    print("Plugin enableLogs error: ${e.message}");
    return Future.error("enableLogs failed.", stack);
  }
}