removeGroupMembers method
Implementation
@override
Future<bool> removeGroupMembers(String topic, List<String> inboxIds) async {
try {
final params = <String, dynamic>{
'topic': topic,
'inboxIds': inboxIds,
}.jsify() as JSObject;
await _promiseToFuture(
_clientManager.removeGroupMembers(params),
);
return true;
} catch (e) {
throw Exception('Failed to remove group members: $e');
}
}