cake_wallet/lib/core/wallet_credentials.dart

11 lines
242 B
Dart
Raw Normal View History

2020-09-21 11:50:26 +00:00
import 'package:cake_wallet/entities/wallet_info.dart';
2020-09-15 20:35:49 +00:00
2020-06-01 18:13:56 +00:00
abstract class WalletCredentials {
2020-09-15 20:35:49 +00:00
WalletCredentials({this.name, this.password, this.height});
2020-06-01 18:13:56 +00:00
final String name;
2020-09-15 20:35:49 +00:00
final int height;
2020-06-20 07:10:00 +00:00
String password;
2020-09-15 20:35:49 +00:00
WalletInfo walletInfo;
}