From 6666cd01090c2d3b00af9cefe19d66619d534ef6 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 30 May 2021 18:52:56 +0300 Subject: [PATCH] Models --- lib/data/models/import_model.g.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/data/models/import_model.g.dart b/lib/data/models/import_model.g.dart index acbf72582..56284d3c4 100644 --- a/lib/data/models/import_model.g.dart +++ b/lib/data/models/import_model.g.dart @@ -7,6 +7,7 @@ part of 'import_model.dart'; // ************************************************************************** const ImportType _$csv = const ImportType._('csv'); +const ImportType _$json = const ImportType._('json'); const ImportType _$freshbooks = const ImportType._('freshbooks'); const ImportType _$invoice2go = const ImportType._('invoice2go'); const ImportType _$invoicely = const ImportType._('invoicely'); @@ -17,6 +18,8 @@ ImportType _$typeValueOf(String name) { switch (name) { case 'csv': return _$csv; + case 'json': + return _$json; case 'freshbooks': return _$freshbooks; case 'invoice2go': @@ -35,6 +38,7 @@ ImportType _$typeValueOf(String name) { final BuiltSet _$typeValues = new BuiltSet(const [ _$csv, + _$json, _$freshbooks, _$invoice2go, _$invoicely,