Format
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
kolaente 2020-04-27 17:09:10 +02:00
parent c146add9bf
commit e110a4b9eb
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -14,7 +14,10 @@ class User {
toJSON() => {"id": this.id, "email": this.email, "username": this.username}; toJSON() => {"id": this.id, "email": this.email, "username": this.username};
String avatarUrl(BuildContext context) { String avatarUrl(BuildContext context) {
return VikunjaGlobal.of(context).client.base + "/" + this.username + "/avatar"; return VikunjaGlobal.of(context).client.base +
"/" +
this.username +
"/avatar";
} }
} }