copyWith method
WebApiModulesSettingsBillingScheduleServiceLogBillingScheduleServiceLog
copyWith({
- int? id,
- String? serviceName,
- String? serverName,
- DateTime? logDateTime,
- String? logMessage,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesSettingsBillingScheduleServiceLogBillingScheduleServiceLog
copyWith(
{int? id,
String? serviceName,
String? serverName,
DateTime? logDateTime,
String? logMessage,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesSettingsBillingScheduleServiceLogBillingScheduleServiceLog(
id: id ?? this.id,
serviceName: serviceName ?? this.serviceName,
serverName: serverName ?? this.serverName,
logDateTime: logDateTime ?? this.logDateTime,
logMessage: logMessage ?? this.logMessage,
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);
}