setCrossPlatformParameters static method
Implementation
static Future<void> setCrossPlatformParameters() async {
try {
await _channel.invokeMethod("setCrossPlatformParameters", {
"name": PluginBuildInfo.pluginName,
"version": PluginBuildInfo.pluginVersion,
});
} catch (e, s) {
_internalLog("setCrossPlatformParameters failed", e, s);
}
}