Tax model

This commit is contained in:
Hillel Coren 2023-04-17 17:40:03 +03:00
parent eeca32139c
commit 102d75c330
1 changed files with 5 additions and 0 deletions

View File

@ -18,6 +18,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
static final Map<String, Map<String, String>> _localizedValues = {
'en': {
// STARTER: lang key - do not remove comment
'calculate_taxes': 'Calculate Taxes',
'admin': 'Admin',
'owner': 'Owner',
'link_expenses': 'Link Expenses',
@ -98309,6 +98310,10 @@ mixin LocalizationsProvider on LocaleCodeAware {
_localizedValues[localeCode]['admin'] ??
_localizedValues['en']['admin'];
String get calculateTaxes =>
_localizedValues[localeCode]['calculate_taxes'] ??
_localizedValues['en']['calculate_taxes'];
// STARTER: lang field - do not remove comment
String lookup(String key) {