disableLogs static method

Future<void> disableLogs()

Disable logs.

Implementation

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