copyWith method

BulkTxSetupArgs copyWith({
  1. int? txType,
  2. String? destination,
  3. int? totalSizeBytes,
})

Implementation

BulkTxSetupArgs copyWith(
    {int? txType, String? destination, int? totalSizeBytes}) {
  return BulkTxSetupArgs(
      txType: txType ?? this.txType,
      destination: destination ?? this.destination,
      totalSizeBytes: totalSizeBytes ?? this.totalSizeBytes);
}