CompanyModel constructor

CompanyModel(
  1. String name,
  2. String owner,
  3. String default_currency,
  4. String country,
  5. String default_gst_rate,
  6. String gst_category,
  7. String chart_of_accounts,
  8. String default_bank_account,
  9. String default_cash_account,
  10. String default_receivable_account,
  11. String default_payable_account,
  12. String write_off_account,
  13. String default_customs_expense_account,
  14. String default_gst_expense_account,
  15. String default_expense_account,
  16. String default_income_account,
  17. String cost_center,
  18. String default_customs_payable_account,
  19. String exchange_gain_loss_account,
  20. String round_off_account,
  21. String round_off_cost_center,
  22. String accumulated_depreciation_account,
  23. String depreciation_expense_account,
  24. String disposal_account,
  25. String depreciation_cost_center,
  26. String default_inventory_account,
  27. String stock_adjustment_account,
  28. String stock_received_but_not_billed,
  29. String expenses_included_in_valuation,
)

Implementation

CompanyModel(
  this.name,
  this.owner,
  this.default_currency,
  this.country,
  this.default_gst_rate,
  this.gst_category,
  this.chart_of_accounts,
  this.default_bank_account,
  this.default_cash_account,
  this.default_receivable_account,
  this.default_payable_account,
  this.write_off_account,
  this.default_customs_expense_account,
  this.default_gst_expense_account,
  this.default_expense_account,
  this.default_income_account,
  this.cost_center,
  this.default_customs_payable_account,
  this.exchange_gain_loss_account,
  this.round_off_account,
  this.round_off_cost_center,
  this.accumulated_depreciation_account,
  this.depreciation_expense_account,
  this.disposal_account,
  this.depreciation_cost_center,
  this.default_inventory_account,
  this.stock_adjustment_account,
  this.stock_received_but_not_billed,
  this.expenses_included_in_valuation,
);