1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Add user profile route

This commit is contained in:
2021-04-26 09:33:54 +02:00
parent 5ab21bd63e
commit f92846cb76
8 changed files with 278 additions and 39 deletions

View File

@ -60,6 +60,10 @@ class AdvancedUserInfo extends User implements LikeElement {
bool get hasPersonalWebsite => personalWebsite.isNotEmpty;
bool get hasEmailAddress => emailAddress != null && emailAddress.isNotEmpty;
bool get hasLocation => location != null && location.isNotEmpty;
@override
LikesType get likeType => LikesType.USER;
}