XlmAddrDecoderResult constructor

XlmAddrDecoderResult({
  1. required XlmAddrTypes type,
  2. required List<int> pubKeyBytes,
  3. required String baseAddress,
  4. required BigInt? accountId,
})

Implementation

XlmAddrDecoderResult(
    {required this.type,
    required List<int> pubKeyBytes,
    required this.baseAddress,
    required this.accountId})
    : pubKeyBytes = BytesUtils.toBytes(pubKeyBytes, unmodifiable: true);