2020-06-01 18:13:56 +00:00
|
|
|
abstract class WalletCredentials {
|
2020-06-20 07:10:00 +00:00
|
|
|
WalletCredentials({this.name, this.password});
|
2020-06-01 18:13:56 +00:00
|
|
|
|
|
|
|
final String name;
|
2020-06-20 07:10:00 +00:00
|
|
|
String password;
|
2020-06-01 18:13:56 +00:00
|
|
|
}
|