copyWith method
WebApiModulesSettingsGeneratorSettingsGeneratorModelGeneratorModel
copyWith({
- String? generatorModelId,
- String? generatorModel,
- String? generatorMakeId,
- String? generatorMake,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesSettingsGeneratorSettingsGeneratorModelGeneratorModel copyWith(
{String? generatorModelId,
String? generatorModel,
String? generatorMakeId,
String? generatorMake,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesSettingsGeneratorSettingsGeneratorModelGeneratorModel(
generatorModelId: generatorModelId ?? this.generatorModelId,
generatorModel: generatorModel ?? this.generatorModel,
generatorMakeId: generatorMakeId ?? this.generatorMakeId,
generatorMake: generatorMake ?? this.generatorMake,
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);
}