setDemoMetaInfo static method
Implementation
static Future<void> setDemoMetaInfo({required Map<String, String> jsonObject}) async {
try{
final arguments = {
"demoMetaInfo": jsonObject
};
await channel.invokeMethod('setDemoMetaInfo', arguments);
} on PlatformException catch (e) {
debugPrint("Error: $e");
} catch (e) {
debugPrint("Error: $e");
}
}