copyWith method
WebApiModulesSettingsPresentationLayerActivityPresentationLayerActivity
copyWith({
- String? presentationLayerActivityId,
- String? presentationLayerId,
- String? activity,
- String? activityRename,
- String? groupNo,
- String? recType,
- String? exportCode,
- double? orderBy,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesSettingsPresentationLayerActivityPresentationLayerActivity
copyWith(
{String? presentationLayerActivityId,
String? presentationLayerId,
String? activity,
String? activityRename,
String? groupNo,
String? recType,
String? exportCode,
double? orderBy,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesSettingsPresentationLayerActivityPresentationLayerActivity(
presentationLayerActivityId:
presentationLayerActivityId ?? this.presentationLayerActivityId,
presentationLayerId: presentationLayerId ?? this.presentationLayerId,
activity: activity ?? this.activity,
activityRename: activityRename ?? this.activityRename,
groupNo: groupNo ?? this.groupNo,
recType: recType ?? this.recType,
exportCode: exportCode ?? this.exportCode,
orderBy: orderBy ?? this.orderBy,
dateStamp: dateStamp ?? this.dateStamp,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}