copyWith method
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,
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);
}