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