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