mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-31 17:37:41 +00:00
9 lines
246 B
Dart
9 lines
246 B
Dart
|
import 'package:flutter/foundation.dart';
|
||
|
|
||
|
class BitcoinWalletKeys {
|
||
|
const BitcoinWalletKeys({@required this.wif, @required this.privateKey, @required this.publicKey});
|
||
|
|
||
|
final String wif;
|
||
|
final String privateKey;
|
||
|
final String publicKey;
|
||
|
}
|