AggregateCompleteTransactionV3 constructor
AggregateCompleteTransactionV3({
- Signature? signature,
- PublicKey? signerPublicKey,
- int? version,
- NetworkType? network,
- TransactionType? type,
- Amount? fee,
- Timestamp? deadline,
- Hash256? transactionsHash,
- List<
IInnerTransaction> ? transactions, - List<
Cosignature> ? cosignatures,
Implementation
AggregateCompleteTransactionV3({
Signature? signature,
PublicKey? signerPublicKey,
int? version,
NetworkType? network,
TransactionType? type,
Amount? fee,
Timestamp? deadline,
Hash256? transactionsHash,
List<IInnerTransaction>? transactions,
List<Cosignature>? cosignatures
}) {
this.signature = signature ?? Signature();
this.signerPublicKey = signerPublicKey ?? PublicKey();
this.version = version ?? AggregateCompleteTransactionV3.TRANSACTION_VERSION;
this.network = network ?? NetworkType.MAINNET;
this.type = type ?? AggregateCompleteTransactionV3.TRANSACTION_TYPE;
this.fee = fee ?? Amount();
this.deadline = deadline ?? Timestamp();
this.transactionsHash = transactionsHash ?? Hash256();
this.transactions = transactions ?? [];
this.cosignatures = cosignatures ?? [];
}