getGroupMemberRole method
Implementation
@override
Future<Map<String, dynamic>> getGroupMemberRole(
String topic, String inboxId) async {
await _ensureInitialized();
final role = await rust_groups.getGroupMemberRole(
topic: topic, inboxId: inboxId);
return {
'isAdmin': role.isAdmin,
'isSuperAdmin': role.isSuperAdmin,
};
}