cake_wallet/cw_core/lib/wallet_credentials.dart

15 lines
275 B
Dart
Raw Normal View History

import 'package:cw_core/wallet_info.dart';
abstract class WalletCredentials {
2022-10-12 17:09:57 +00:00
WalletCredentials({
required this.name,
this.height,
this.walletInfo,
this.password});
final String name;
2022-10-12 17:09:57 +00:00
final int? height;
String? password;
WalletInfo? walletInfo;
}