enableLogs static method
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);
}
}