migrate fix int Null

migrate_to_ns
error500 2022-01-25 17:30:21 +06:00
parent 97250689c1
commit f29d9edb22
1 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ class User {
email: json['mail'],
token: json['api_token'],
fullName: json['fullname'],
appCompanyId: json['app_company_id'] as int,
kassaId: json['kassa_id'] as int,
appCompanyId: json['app_company_id'],
kassaId: json['kassa_id'],
)
: null;
}