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