This commit is contained in:
M 2020-06-01 21:13:56 +03:00
parent b605a98811
commit 957ca8cd58
23 changed files with 1082 additions and 440 deletions

View file

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