getBuildDate static method
Returns FFmpegKit native library build date.
Implementation
static Future<String?> getBuildDate() async {
try {
await init();
return _platform.ffmpegKitConfigGetBuildDate();
} on PlatformException catch (e, stack) {
print("Plugin getBuildDate error: ${e.message}");
return Future.error("getBuildDate failed.", stack);
}
}