MoneroIntegratedAddr constructor

MoneroIntegratedAddr(
  1. Uint8List spendKey,
  2. Uint8List viewKey,
  3. Uint8List paymentId
)

Implementation

MoneroIntegratedAddr(
    Uint8List spendKey, Uint8List viewKey, Uint8List paymentId)
    : publicSpendKey = copyCheckBytes(spendKey, 32, 'publicSpendKey'),
      publicViewKey = copyCheckBytes(viewKey, 32, 'publicViewKey'),
      paymentId = copyCheckBytes(paymentId, 8, 'paymentId');