calendar sync fixes

This commit is contained in:
Kima
2024-03-01 19:00:19 +01:00
parent 010867260c
commit 7ebc470a7b
4 changed files with 20 additions and 7 deletions

View File

@@ -10,12 +10,14 @@ class LinkedAccount {
String username;
String displayName;
String id;
Map? json;
LinkedAccount({
required this.type,
required this.username,
required this.displayName,
required this.id,
required this.json,
});
factory LinkedAccount.fromJson(Map json) {
@@ -30,6 +32,7 @@ class LinkedAccount {
username: json['username'],
displayName: json['display_name'],
id: json['id'],
json: json,
);
}
}