copyWith method

WebApiModulesHomeControlsCompanyTaxResaleCompanyTaxResale copyWith({
  1. String? companyTaxResaleId,
  2. String? companyId,
  3. String? stateId,
  4. String? stateCode,
  5. String? resaleNumber,
  6. String? auditNote,
  7. String? recordTitle,
  8. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  9. List<FwStandardDataFwCustomValue>? custom,
  10. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  11. 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);
}