CompanyModel constructor
CompanyModel(
- String name,
- String owner,
- String default_currency,
- String country,
- String default_gst_rate,
- String gst_category,
- String chart_of_accounts,
- String default_bank_account,
- String default_cash_account,
- String default_receivable_account,
- String default_payable_account,
- String write_off_account,
- String default_customs_expense_account,
- String default_gst_expense_account,
- String default_expense_account,
- String default_income_account,
- String cost_center,
- String default_customs_payable_account,
- String exchange_gain_loss_account,
- String round_off_account,
- String round_off_cost_center,
- String accumulated_depreciation_account,
- String depreciation_expense_account,
- String disposal_account,
- String depreciation_cost_center,
- String default_inventory_account,
- String stock_adjustment_account,
- String stock_received_but_not_billed,
- 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,
);