mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 20:09:23 +00:00
18 lines
406 B
Dart
18 lines
406 B
Dart
|
import '../../wallets/wallet/wallet_mixin_interfaces/extended_keys_interface.dart';
|
||
|
import 'key_data_interface.dart';
|
||
|
|
||
|
class XPrivData with KeyDataInterface {
|
||
|
XPrivData({
|
||
|
required this.walletId,
|
||
|
required this.fingerprint,
|
||
|
required List<XPriv> xprivs,
|
||
|
}) : xprivs = List.unmodifiable(xprivs);
|
||
|
|
||
|
@override
|
||
|
final String walletId;
|
||
|
|
||
|
final String fingerprint;
|
||
|
|
||
|
final List<XPriv> xprivs;
|
||
|
}
|