copyWithWrapped method
Implementation
BulkTxSetupArgs copyWithWrapped(
{Wrapped<int?>? txType,
Wrapped<String?>? destination,
Wrapped<int?>? totalSizeBytes}) {
return BulkTxSetupArgs(
txType: (txType != null ? txType.value : this.txType),
destination:
(destination != null ? destination.value : this.destination),
totalSizeBytes: (totalSizeBytes != null
? totalSizeBytes.value
: this.totalSizeBytes));
}