copyWith method
WebApiModulesUtilitiesRateUpdateBatchRateUpdateBatch
copyWith({
- int? rateUpdateBatchId,
- String? rateUpdateBatch,
- String? usersId,
- String? userName,
- DateTime? applied,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesUtilitiesRateUpdateBatchRateUpdateBatch copyWith(
{int? rateUpdateBatchId,
String? rateUpdateBatch,
String? usersId,
String? userName,
DateTime? applied,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesUtilitiesRateUpdateBatchRateUpdateBatch(
rateUpdateBatchId: rateUpdateBatchId ?? this.rateUpdateBatchId,
rateUpdateBatch: rateUpdateBatch ?? this.rateUpdateBatch,
usersId: usersId ?? this.usersId,
userName: userName ?? this.userName,
applied: applied ?? this.applied,
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);
}