VerifyCardanoSignatureArgs constructor

const VerifyCardanoSignatureArgs({
  1. required Uint8List signData,
  2. Uint8List? witnessSet,
  3. List<CardanoWitness>? witnesses,
  4. VerifyCardanoAccount? account,
  5. List<String>? signerPaths,
})

Implementation

const VerifyCardanoSignatureArgs({
  required this.signData,
  this.witnessSet,
  this.witnesses,
  this.account,
  this.signerPaths,
});