removeGroupMembers method
Implementation
@override
Future<bool> removeGroupMembers(String topic, List<String> inboxIds) async {
final result = await methodChannel.invokeMethod<bool>('removeGroupMembers', {
'topic': topic,
'inboxIds': inboxIds,
});
return result ?? false;
}