copyWith method
WebApiModulesSettingsContactSettingsContactEventContactEvent
copyWith({
- String? contactEventId,
- String? contactEvent,
- String? color,
- bool? whiteText,
- bool? recurring,
- bool? inactive,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesSettingsContactSettingsContactEventContactEvent copyWith(
{String? contactEventId,
String? contactEvent,
String? color,
bool? whiteText,
bool? recurring,
bool? inactive,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesSettingsContactSettingsContactEventContactEvent(
contactEventId: contactEventId ?? this.contactEventId,
contactEvent: contactEvent ?? this.contactEvent,
color: color ?? this.color,
whiteText: whiteText ?? this.whiteText,
recurring: recurring ?? this.recurring,
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);
}