disableStatistics static method

Future<void> disableStatistics()

Disables statistics.

Implementation

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