This commit is contained in:
Hillel Coren 2021-05-30 18:52:56 +03:00
parent 34212e0c16
commit 6666cd0109
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,7 @@ part of 'import_model.dart';
// ************************************************************************** // **************************************************************************
const ImportType _$csv = const ImportType._('csv'); const ImportType _$csv = const ImportType._('csv');
const ImportType _$json = const ImportType._('json');
const ImportType _$freshbooks = const ImportType._('freshbooks'); const ImportType _$freshbooks = const ImportType._('freshbooks');
const ImportType _$invoice2go = const ImportType._('invoice2go'); const ImportType _$invoice2go = const ImportType._('invoice2go');
const ImportType _$invoicely = const ImportType._('invoicely'); const ImportType _$invoicely = const ImportType._('invoicely');
@ -17,6 +18,8 @@ ImportType _$typeValueOf(String name) {
switch (name) { switch (name) {
case 'csv': case 'csv':
return _$csv; return _$csv;
case 'json':
return _$json;
case 'freshbooks': case 'freshbooks':
return _$freshbooks; return _$freshbooks;
case 'invoice2go': case 'invoice2go':
@ -35,6 +38,7 @@ ImportType _$typeValueOf(String name) {
final BuiltSet<ImportType> _$typeValues = final BuiltSet<ImportType> _$typeValues =
new BuiltSet<ImportType>(const <ImportType>[ new BuiltSet<ImportType>(const <ImportType>[
_$csv, _$csv,
_$json,
_$freshbooks, _$freshbooks,
_$invoice2go, _$invoice2go,
_$invoicely, _$invoicely,