queryGroupAllAttributes method
Implementation
Future<Map<dynamic, dynamic>> queryGroupAllAttributes(String groupID) async {
final result = await promiseToFuture(
ZIM.getInstance()!.queryGroupAllAttributes(groupID))
.catchError((e) {
throw PlatformException(code: e.code.toString(), message: e.message);
});
return jsObjectToMap(result);
}