XlmAddrDecoderResult constructor
XlmAddrDecoderResult({
- required XlmAddrTypes type,
- required List<
int> pubKeyBytes, - required String baseAddress,
- required BigInt? accountId,
Implementation
XlmAddrDecoderResult(
{required this.type,
required List<int> pubKeyBytes,
required this.baseAddress,
required this.accountId})
: pubKeyBytes = BytesUtils.toBytes(pubKeyBytes, unmodifiable: true);