Shows username on listtile
This commit is contained in:
12
lib/models/profile.dart
Normal file
12
lib/models/profile.dart
Normal 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 = ''});
|
||||
}
|
||||
Reference in New Issue
Block a user