copyWith method

WebApiModulesSettingsPresentationLayerActivityPresentationLayerActivity copyWith({
  1. String? presentationLayerActivityId,
  2. String? presentationLayerId,
  3. String? activity,
  4. String? activityRename,
  5. String? groupNo,
  6. String? recType,
  7. String? exportCode,
  8. double? orderBy,
  9. String? dateStamp,
  10. String? auditNote,
  11. String? recordTitle,
  12. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  13. List<FwStandardDataFwCustomValue>? custom,
  14. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  15. 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);
}