QueryResponse constructor

QueryResponse({
  1. List<Account>? account,
  2. List<CompanyInfo>? companyInfo,
  3. List<Bill>? bill,
  4. List<Customer>? customer,
  5. List<Employee>? employee,
  6. List<Estimate>? estimate,
  7. List<Invoice>? invoice,
  8. List<Item>? item,
  9. List<Payment>? payment,
  10. List<Preferences>? preferences,
  11. List<TaxAgency>? taxAgency,
  12. List<Vendor>? vendor,
  13. int? maxResults,
  14. int? startPosition,
})

Implementation

QueryResponse({
  this.account,
  this.companyInfo,
  this.bill,
  this.customer,
  this.employee,
  this.estimate,
  this.invoice,
  this.item,
  this.payment,
  this.preferences,
  this.taxAgency,
  this.vendor,
  this.maxResults,
  this.startPosition
});