AuthData constructor

AuthData({
  1. required Uint8List transactionId,
  2. required Uint8List encryptionSessionKey,
  3. required Uint8List cmacSessionKey,
})

Implementation

AuthData({
  required this.transactionId,
  required this.encryptionSessionKey,
  required this.cmacSessionKey,
});