This commit is contained in:
M 2020-06-20 10:10:00 +03:00
parent 719842964b
commit 81cee186db
94 changed files with 3786 additions and 3001 deletions

View file

@ -1,6 +1,6 @@
abstract class WalletCredentials {
const WalletCredentials({this.name, this.password});
WalletCredentials({this.name, this.password});
final String name;
final String password;
String password;
}