copyWith method
WebApiModulesHomeControlsCompanyTaxResaleCompanyTaxResale
copyWith({
- String? companyTaxResaleId,
- String? companyId,
- String? stateId,
- String? stateCode,
- String? resaleNumber,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesHomeControlsCompanyTaxResaleCompanyTaxResale copyWith(
{String? companyTaxResaleId,
String? companyId,
String? stateId,
String? stateCode,
String? resaleNumber,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesHomeControlsCompanyTaxResaleCompanyTaxResale(
companyTaxResaleId: companyTaxResaleId ?? this.companyTaxResaleId,
companyId: companyId ?? this.companyId,
stateId: stateId ?? this.stateId,
stateCode: stateCode ?? this.stateCode,
resaleNumber: resaleNumber ?? this.resaleNumber,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}