copyWith method

WebApiModulesUtilitiesRateUpdateBatchRateUpdateBatch copyWith({
  1. int? rateUpdateBatchId,
  2. String? rateUpdateBatch,
  3. String? usersId,
  4. String? userName,
  5. DateTime? applied,
  6. String? dateStamp,
  7. String? auditNote,
  8. String? recordTitle,
  9. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  10. List<FwStandardDataFwCustomValue>? custom,
  11. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  12. 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);
}