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((e) {
    throw PlatformException(code: e.code.toString(), message: e.message);
  });

  return jsObjectToMap(result);
}