copyWith method
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,
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);
}