copyWith method
Implementation
WebApiModulesWarehouseCheckInCheckInSessionInfo copyWith(
{String? contractId,
int? sessionNumber,
String? dealId,
String? deal,
String? departmentId,
String? department,
bool? hasSales}) {
return WebApiModulesWarehouseCheckInCheckInSessionInfo(
contractId: contractId ?? this.contractId,
sessionNumber: sessionNumber ?? this.sessionNumber,
dealId: dealId ?? this.dealId,
deal: deal ?? this.deal,
departmentId: departmentId ?? this.departmentId,
department: department ?? this.department,
hasSales: hasSales ?? this.hasSales);
}