copyWith method

WebApiModulesSettingsRateLocationTaxRateLocationTax copyWith({
  1. String? rateId,
  2. int? id,
  3. String? internalChar,
  4. String? locationId,
  5. String? location,
  6. bool? taxable,
  7. String? modByUsersId,
  8. String? modByUser,
  9. String? dateStamp,
  10. String? auditNote,
  11. String? recordTitle,
  12. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  13. List<FwStandardDataFwCustomValue>? custom,
  14. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  15. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesSettingsRateLocationTaxRateLocationTax copyWith(
    {String? rateId,
    int? id,
    String? internalChar,
    String? locationId,
    String? location,
    bool? taxable,
    String? modByUsersId,
    String? modByUser,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesSettingsRateLocationTaxRateLocationTax(
      rateId: rateId ?? this.rateId,
      id: id ?? this.id,
      internalChar: internalChar ?? this.internalChar,
      locationId: locationId ?? this.locationId,
      location: location ?? this.location,
      taxable: taxable ?? this.taxable,
      modByUsersId: modByUsersId ?? this.modByUsersId,
      modByUser: modByUser ?? this.modByUser,
      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);
}