SigningBlock.create constructor
SigningBlock.create({})
Implementation
SigningBlock.create({
required this.messages,
required this.signatures,
required this.publicKeys,
this.algoId = 0x0201,
}) : messageBlocks = messages.map((e) => MessageBlock(e, algoId)).toList(),
signatureBlocks =
signatures.map((e) => SignatureBlock(e, algoId)).toList(),
publicKeyBlocks = publicKeys.map((e) => PublicKeyBlock(e)).toList();