searchGlobalLocalMessages method
Implementation
Future<Map<dynamic, dynamic>> searchGlobalLocalMessages(
dynamic config) async {
Object _config = mapToJSObj(config);
final result = await promiseToFuture(
ZIM.getInstance()!.searchGlobalLocalMessages(_config))
.catchError((e) {
throw PlatformException(code: e.code.toString(), message: e.message);
});
final resultMap = jsObjectToMap(result);
return resultMap;
}