copyWith method
WebApiModulesSettingsSystemSettingsBillingScheduleServiceSettingsBillingScheduleServiceSettings
copyWith({
- String? controlId,
- String? billingScheduleServiceSettings,
- bool? billingScheduleServiceKeepFresh,
- int? billingScheduleServiceKeepFreshMinutes,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesSettingsSystemSettingsBillingScheduleServiceSettingsBillingScheduleServiceSettings
copyWith(
{String? controlId,
String? billingScheduleServiceSettings,
bool? billingScheduleServiceKeepFresh,
int? billingScheduleServiceKeepFreshMinutes,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesSettingsSystemSettingsBillingScheduleServiceSettingsBillingScheduleServiceSettings(
controlId: controlId ?? this.controlId,
billingScheduleServiceSettings: billingScheduleServiceSettings ??
this.billingScheduleServiceSettings,
billingScheduleServiceKeepFresh: billingScheduleServiceKeepFresh ??
this.billingScheduleServiceKeepFresh,
billingScheduleServiceKeepFreshMinutes:
billingScheduleServiceKeepFreshMinutes ??
this.billingScheduleServiceKeepFreshMinutes,
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);
}