copyWith method

WebApiModulesSettingsOrderSettingsOrderLocationOrderLocation copyWith({
  1. String? orderLocationId,
  2. String? orderLocation,
  3. String? location,
  4. String? locationId,
  5. bool? inactive,
  6. String? dateStamp,
  7. String? auditNote,
  8. String? recordTitle,
  9. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  10. List<FwStandardDataFwCustomValue>? custom,
  11. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  12. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

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