deleteGroupAttributes method

Future<Map> deleteGroupAttributes(
  1. dynamic keys,
  2. String groupID
)

Implementation

Future<Map<dynamic, dynamic>> deleteGroupAttributes(
    dynamic keys, String groupID) async {
  final result = await promiseToFuture(
          ZIM.getInstance()!.deleteGroupAttributes(keys, groupID))
      .catchError(handleError);

  return jsObjectToMap(result);
}