copyWith method

WebApiModulesAdministratorDataHealthDataHealth copyWith({
  1. int? dataHealthId,
  2. String? dataHealthType,
  3. String? captureDateTime,
  4. String? captureDate,
  5. String? json,
  6. String? severity,
  7. String? severityColor,
  8. String? notes,
  9. bool? resolved,
  10. int? quantity,
  11. bool? inactive,
  12. String? auditNote,
  13. String? recordTitle,
  14. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  15. List<FwStandardDataFwCustomValue>? custom,
  16. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  17. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesAdministratorDataHealthDataHealth copyWith(
    {int? dataHealthId,
    String? dataHealthType,
    String? captureDateTime,
    String? captureDate,
    String? json,
    String? severity,
    String? severityColor,
    String? notes,
    bool? resolved,
    int? quantity,
    bool? inactive,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesAdministratorDataHealthDataHealth(
      dataHealthId: dataHealthId ?? this.dataHealthId,
      dataHealthType: dataHealthType ?? this.dataHealthType,
      captureDateTime: captureDateTime ?? this.captureDateTime,
      captureDate: captureDate ?? this.captureDate,
      json: json ?? this.json,
      severity: severity ?? this.severity,
      severityColor: severityColor ?? this.severityColor,
      notes: notes ?? this.notes,
      resolved: resolved ?? this.resolved,
      quantity: quantity ?? this.quantity,
      inactive: inactive ?? this.inactive,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes,
      translation: translation ?? this.translation);
}