CommercioDocReceipt constructor
CommercioDocReceipt({})
Implementation
CommercioDocReceipt({
required this.uuid,
required this.senderDid,
required this.recipientDid,
required this.txHash,
required this.documentUuid,
this.proof,
}) : assert(matchUuidv4(uuid)),
assert(matchBech32Format(senderDid)),
assert(matchBech32Format(recipientDid)),
assert(matchUuidv4(documentUuid));