copyWithWrapped method

BulkTxSetupArgs copyWithWrapped({
  1. Wrapped<int?>? txType,
  2. Wrapped<String?>? destination,
  3. Wrapped<int?>? totalSizeBytes,
})

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));
}