Models
This commit is contained in:
parent
34212e0c16
commit
6666cd0109
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue