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