cake_wallet/cw_core/lib/wallet_credentials.dart
2022-10-12 13:09:57 -04:00

14 lines
275 B
Dart

import 'package:cw_core/wallet_info.dart';
abstract class WalletCredentials {
WalletCredentials({
required this.name,
this.height,
this.walletInfo,
this.password});
final String name;
final int? height;
String? password;
WalletInfo? walletInfo;
}