cake_wallet/cw_core/lib/wallet_credentials.dart
2023-11-20 09:47:20 -05:00

22 lines
495 B
Dart

import 'package:cw_core/wallet_info.dart';
abstract class WalletCredentials {
WalletCredentials({
required this.name,
this.height,
this.seedPhraseLength,
this.walletInfo,
this.password,
DerivationInfo? derivationInfo,
}) {
if (this.walletInfo != null && derivationInfo != null) {
this.walletInfo!.derivationInfo = derivationInfo;
}
}
final String name;
final int? height;
int? seedPhraseLength;
String? password;
WalletInfo? walletInfo;
}