Provides the base-58 encoded WIF string
@override toString() => _wifCache ??= base58Encode( Uint8List.fromList([ version, ...privkey.data, ...(privkey.compressed ? [1] : []), ]), );