cake_wallet/lib/core/wallet_credentials.dart

6 lines
138 B
Dart
Raw Normal View History

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