copyWith method
FwStandardModulesAdministratorHandlebarsTemplateHandlebarsTemplateLogic
copyWith({
- int? handlebarsTemplateId,
- String? description,
- String? template,
- String? moduleName,
- String? templateType,
- bool? inactive,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
FwStandardModulesAdministratorHandlebarsTemplateHandlebarsTemplateLogic
copyWith(
{int? handlebarsTemplateId,
String? description,
String? template,
String? moduleName,
String? templateType,
bool? inactive,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return FwStandardModulesAdministratorHandlebarsTemplateHandlebarsTemplateLogic(
handlebarsTemplateId: handlebarsTemplateId ?? this.handlebarsTemplateId,
description: description ?? this.description,
template: template ?? this.template,
moduleName: moduleName ?? this.moduleName,
templateType: templateType ?? this.templateType,
inactive: inactive ?? this.inactive,
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);
}