copyWith method

WebApiModulesHomeControlsRepairReleaseRepairRelease copyWith({
  1. String? repairReleaseId,
  2. String? repairId,
  3. String? releaseDate,
  4. String? usersId,
  5. String? releasedBy,
  6. double? releaseQuantity,
  7. bool? staging,
  8. String? dateStamp,
  9. String? auditNote,
  10. String? recordTitle,
  11. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  12. List<FwStandardDataFwCustomValue>? custom,
  13. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  14. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesHomeControlsRepairReleaseRepairRelease copyWith(
    {String? repairReleaseId,
    String? repairId,
    String? releaseDate,
    String? usersId,
    String? releasedBy,
    double? releaseQuantity,
    bool? staging,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesHomeControlsRepairReleaseRepairRelease(
      repairReleaseId: repairReleaseId ?? this.repairReleaseId,
      repairId: repairId ?? this.repairId,
      releaseDate: releaseDate ?? this.releaseDate,
      usersId: usersId ?? this.usersId,
      releasedBy: releasedBy ?? this.releasedBy,
      releaseQuantity: releaseQuantity ?? this.releaseQuantity,
      staging: staging ?? this.staging,
      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);
}