cake_wallet/cw_nano/lib/nano_wallet_keys.dart

6 lines
99 B
Dart
Raw Normal View History

2023-07-25 15:21:49 +00:00
class NanoWalletKeys {
2023-07-31 15:39:22 +00:00
const NanoWalletKeys({required this.seedKey});
2023-07-25 15:21:49 +00:00
2023-07-31 15:39:22 +00:00
final String seedKey;
2023-07-25 15:21:49 +00:00
}