copyWith method
WebApiModulesHomeControlsOrderDatesOrderDates
copyWith({
- String? orderId,
- String? orderTypeId,
- String? orderTypeDateTypeId,
- bool? isSystemType,
- String? activityTypeId,
- String? activityType,
- String? activity,
- String? activityDisplay,
- String? description,
- String? descriptionDisplay,
- String? descriptionDisplayTitleCase,
- bool? isEnabled,
- String? date,
- String? time,
- String? dateAndTime,
- String? dayOfWeek,
- String? actualDate,
- String? actualTime,
- String? actualDayOfWeek,
- bool? isRequired,
- bool? isProductionActivity,
- bool? isMilestone,
- double? orderBy,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesHomeControlsOrderDatesOrderDates copyWith(
{String? orderId,
String? orderTypeId,
String? orderTypeDateTypeId,
bool? isSystemType,
String? activityTypeId,
String? activityType,
String? activity,
String? activityDisplay,
String? description,
String? descriptionDisplay,
String? descriptionDisplayTitleCase,
bool? isEnabled,
String? date,
String? time,
String? dateAndTime,
String? dayOfWeek,
String? actualDate,
String? actualTime,
String? actualDayOfWeek,
bool? isRequired,
bool? isProductionActivity,
bool? isMilestone,
double? orderBy,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesHomeControlsOrderDatesOrderDates(
orderId: orderId ?? this.orderId,
orderTypeId: orderTypeId ?? this.orderTypeId,
orderTypeDateTypeId: orderTypeDateTypeId ?? this.orderTypeDateTypeId,
isSystemType: isSystemType ?? this.isSystemType,
activityTypeId: activityTypeId ?? this.activityTypeId,
activityType: activityType ?? this.activityType,
activity: activity ?? this.activity,
activityDisplay: activityDisplay ?? this.activityDisplay,
description: description ?? this.description,
descriptionDisplay: descriptionDisplay ?? this.descriptionDisplay,
descriptionDisplayTitleCase:
descriptionDisplayTitleCase ?? this.descriptionDisplayTitleCase,
isEnabled: isEnabled ?? this.isEnabled,
date: date ?? this.date,
time: time ?? this.time,
dateAndTime: dateAndTime ?? this.dateAndTime,
dayOfWeek: dayOfWeek ?? this.dayOfWeek,
actualDate: actualDate ?? this.actualDate,
actualTime: actualTime ?? this.actualTime,
actualDayOfWeek: actualDayOfWeek ?? this.actualDayOfWeek,
isRequired: isRequired ?? this.isRequired,
isProductionActivity: isProductionActivity ?? this.isProductionActivity,
isMilestone: isMilestone ?? this.isMilestone,
orderBy: orderBy ?? this.orderBy,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}