copyWith method
WebApiModulesSettingsBillingCycleEventBillingCycleEvent
copyWith({
- String? billingCycleId,
- String? billingCycleEventId,
- String? billingCycleEvent,
- int? billPercent,
- int? orderBy,
- bool? actualRevenue,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesSettingsBillingCycleEventBillingCycleEvent copyWith(
{String? billingCycleId,
String? billingCycleEventId,
String? billingCycleEvent,
int? billPercent,
int? orderBy,
bool? actualRevenue,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesSettingsBillingCycleEventBillingCycleEvent(
billingCycleId: billingCycleId ?? this.billingCycleId,
billingCycleEventId: billingCycleEventId ?? this.billingCycleEventId,
billingCycleEvent: billingCycleEvent ?? this.billingCycleEvent,
billPercent: billPercent ?? this.billPercent,
orderBy: orderBy ?? this.orderBy,
actualRevenue: actualRevenue ?? this.actualRevenue,
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);
}