wif property

String? wif

Implementation

String? get wif {
  if (_bip32 == null) return null;
  try {
    return _bip32!.toWIF();
  } catch (_) {
    return null;
  }
}