copyWith method

WebApiModulesSettingsPresentationSettingsPresentationLayerPresentationLayer copyWith({
  1. String? presentationLayerId,
  2. String? presentationLayer,
  3. bool? inactive,
  4. String? dateStamp,
  5. String? auditNote,
  6. String? recordTitle,
  7. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  8. List<FwStandardDataFwCustomValue>? custom,
  9. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  10. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesSettingsPresentationSettingsPresentationLayerPresentationLayer
    copyWith(
        {String? presentationLayerId,
        String? presentationLayer,
        bool? inactive,
        String? dateStamp,
        String? auditNote,
        String? recordTitle,
        List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
        List<FwStandardDataFwCustomValue>? custom,
        List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
        List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesSettingsPresentationSettingsPresentationLayerPresentationLayer(
      presentationLayerId: presentationLayerId ?? this.presentationLayerId,
      presentationLayer: presentationLayer ?? this.presentationLayer,
      inactive: inactive ?? this.inactive,
      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);
}