NonVerifiableMultisigAccountModificationTransactionV2 constructor

NonVerifiableMultisigAccountModificationTransactionV2({
  1. TransactionType? type,
  2. int? version,
  3. NetworkType? network,
  4. Timestamp? timestamp,
  5. PublicKey? signerPublicKey,
  6. Amount? fee,
  7. Timestamp? deadline,
  8. List<SizePrefixedMultisigAccountModification>? modifications,
  9. int? minApprovalDelta,
})

Implementation

NonVerifiableMultisigAccountModificationTransactionV2({
TransactionType? type,
int? version,
NetworkType? network,
Timestamp? timestamp,
PublicKey? signerPublicKey,
Amount? fee,
Timestamp? deadline,
List<SizePrefixedMultisigAccountModification>? modifications,
int? minApprovalDelta
}) {
	this.type = type ?? NonVerifiableMultisigAccountModificationTransactionV2.TRANSACTION_TYPE;
	this.version = version ?? NonVerifiableMultisigAccountModificationTransactionV2.TRANSACTION_VERSION;
	this.network = network ?? NetworkType.MAINNET;
	this.timestamp = timestamp ?? Timestamp();
	this.signerPublicKey = signerPublicKey ?? PublicKey();
	this.fee = fee ?? Amount();
	this.deadline = deadline ?? Timestamp();
	this.modifications = modifications ?? [];
	this.minApprovalDelta = minApprovalDelta ?? 0;
}