copyWith method

WebApiModulesAdministratorHotfixHotfix copyWith({
  1. String? hotfixId,
  2. String? fileName,
  3. String? description,
  4. String? hotfixBegin,
  5. String? hotfixEnd,
  6. double? hotfixSeconds,
  7. String? auditNote,
  8. String? recordTitle,
  9. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  10. List<FwStandardDataFwCustomValue>? custom,
  11. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  12. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesAdministratorHotfixHotfix copyWith(
    {String? hotfixId,
    String? fileName,
    String? description,
    String? hotfixBegin,
    String? hotfixEnd,
    double? hotfixSeconds,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesAdministratorHotfixHotfix(
      hotfixId: hotfixId ?? this.hotfixId,
      fileName: fileName ?? this.fileName,
      description: description ?? this.description,
      hotfixBegin: hotfixBegin ?? this.hotfixBegin,
      hotfixEnd: hotfixEnd ?? this.hotfixEnd,
      hotfixSeconds: hotfixSeconds ?? this.hotfixSeconds,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes,
      translation: translation ?? this.translation);
}