mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
7 lines
No EOL
200 B
Dart
7 lines
No EOL
200 B
Dart
class BitcoinWalletKeys {
|
|
const BitcoinWalletKeys({required this.wif, required this.privateKey, required this.publicKey});
|
|
|
|
final String wif;
|
|
final String privateKey;
|
|
final String publicKey;
|
|
} |