getWebFrameworkVersion static method
Get WebFramework version
String representation of version in format {major}.{minor}.{patch}
Implementation
static Future<String> getWebFrameworkVersion() async {
DllHandler handler = await DllHandler.create();
return handler.instance.lookupFunction<GetWebFrameworkVersion, GetWebFrameworkVersion>("getWebFrameworkVersion")().toDartString();
}