Shows username on listtile

This commit is contained in:
marcoabat
2023-08-12 12:43:15 +02:00
parent 271190b459
commit d37d4a6866
8 changed files with 89 additions and 6 deletions

12
lib/models/profile.dart Normal file
View File

@@ -0,0 +1,12 @@
class Profile {
final String id;
final String username;
final String language;
final String bio;
Profile(
{required this.id,
this.username = '',
this.language = '',
this.bio = ''});
}