copyWith method
TransactionRaw
copyWith(
{ - List<int>? refBlockBytes,
- BigInt? refBlockNum,
- List<int>? refBlockHash,
- BigInt? expiration,
- List<Authority>? auths,
- List<int>? data,
- List<TransactionContract>? contract,
- List<int>? scripts,
- BigInt? timestamp,
- BigInt? feeLimit,
})
Implementation
TransactionRaw copyWith({
List<int>? refBlockBytes,
BigInt? refBlockNum,
List<int>? refBlockHash,
BigInt? expiration,
List<Authority>? auths,
List<int>? data,
List<TransactionContract>? contract,
List<int>? scripts,
BigInt? timestamp,
BigInt? feeLimit,
}) {
return TransactionRaw(
refBlockBytes: refBlockBytes ?? this.refBlockBytes,
refBlockNum: refBlockNum ?? this.refBlockNum,
refBlockHash: refBlockHash ?? this.refBlockHash,
expiration: expiration ?? this.expiration,
auths: auths ?? this.auths,
data: data ?? this.data,
contract: contract ?? this.contract,
scripts: scripts ?? this.scripts,
timestamp: timestamp ?? this.timestamp,
feeLimit: feeLimit ?? this.feeLimit,
);
}