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