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