refactor and move stuff

This commit is contained in:
John Smith 2023-01-10 21:04:18 -05:00
parent 8c22bf8cc0
commit b54868cc55
28 changed files with 500 additions and 94 deletions

20
lib/entities/profile.dart Normal file
View file

@ -0,0 +1,20 @@
class Profile {
String name;
String publicKey;
bool invisible;
Profile(this.name, this.publicKey) : invisible = false;
Profile.fromJson(Map<String, dynamic> json)
: name = json['name'],
publicKey = json['public_key'],
invisible = json['invisible'];
Map<String, dynamic> toJson() {
return {
'name': name,
'public_key': publicKey,
'invisible': invisible,
};
}
}