lint cleanup

This commit is contained in:
Christien Rioux 2023-07-26 17:42:11 -04:00
parent fe9d9f8aca
commit 9fa1666e8b
22 changed files with 178 additions and 155 deletions

View file

@ -19,9 +19,10 @@ enum EncryptionKeyType {
pin,
password;
String toJson() => name.toPascalCase();
factory EncryptionKeyType.fromJson(dynamic j) =>
EncryptionKeyType.values.byName((j as String).toCamelCase());
String toJson() => name.toPascalCase();
}
// Local Accounts are stored in a table locally and not backed by a DHT key