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

Fix all warnings

This commit is contained in:
2022-03-11 16:21:35 +01:00
parent 820491b09a
commit 5398970868
18 changed files with 27 additions and 22 deletions

View File

@ -30,7 +30,7 @@ class User implements SerializableElement<User> {
}) : assert(id > 0);
/// Get user full name
String get fullName => firstName! + " " + lastName!;
String get fullName => firstName + " " + lastName;
/// Get user display name
String get displayName => htmlDecodeCharacters(fullName);