copyWith method
Implementation
WebApiModulesUtilitiesMigrateStartMigrateSessionRequest copyWith(
{String? dealId, String? departmentId, String? orderIds}) {
return WebApiModulesUtilitiesMigrateStartMigrateSessionRequest(
dealId: dealId ?? this.dealId,
departmentId: departmentId ?? this.departmentId,
orderIds: orderIds ?? this.orderIds);
}