copyWith method
Implementation
WebApiModulesWarehouseCheckInSuspendedSession copyWith(
{String? contractId,
String? date,
String? time,
int? sessionNumber,
String? dealVendor,
String? orderNumber,
String? description,
String? user,
String? status}) {
return WebApiModulesWarehouseCheckInSuspendedSession(
contractId: contractId ?? this.contractId,
date: date ?? this.date,
time: time ?? this.time,
sessionNumber: sessionNumber ?? this.sessionNumber,
dealVendor: dealVendor ?? this.dealVendor,
orderNumber: orderNumber ?? this.orderNumber,
description: description ?? this.description,
user: user ?? this.user,
status: status ?? this.status);
}