enableStatistics static method
Enables statistics.
Implementation
static Future<void> enableStatistics() async {
try {
await init();
return _platform.ffmpegKitConfigEnableStatistics();
} on PlatformException catch (e, stack) {
print("Plugin enableStatistics error: ${e.message}");
return Future.error("enableStatistics failed.", stack);
}
}