privKey property
String?
get
privKey
Implementation
String? get privKey {
if (_bip32 == null) return null;
try {
return HEX.encode(_bip32!.privateKey!);
} catch (_) {
return null;
}
}