13 lines
219 B
Dart
13 lines
219 B
Dart
class Profile {
|
|
final String id;
|
|
final String username;
|
|
final String language;
|
|
final String bio;
|
|
|
|
Profile(
|
|
{required this.id,
|
|
this.username = '',
|
|
this.language = '',
|
|
this.bio = ''});
|
|
}
|