CSV import
This commit is contained in:
parent
c4dff3e967
commit
b464be5e4f
|
|
@ -0,0 +1,25 @@
|
||||||
|
import 'package:built_collection/built_collection.dart';
|
||||||
|
import 'package:built_value/built_value.dart';
|
||||||
|
import 'package:built_value/serializer.dart';
|
||||||
|
|
||||||
|
part 'import_model.g.dart';
|
||||||
|
|
||||||
|
abstract class PreImportResponse
|
||||||
|
implements Built<PreImportResponse, PreImportResponseBuilder> {
|
||||||
|
factory PreImportResponse() {
|
||||||
|
return _$PreImportResponse._();
|
||||||
|
}
|
||||||
|
|
||||||
|
PreImportResponse._();
|
||||||
|
|
||||||
|
@override
|
||||||
|
@memoized
|
||||||
|
int get hashCode;
|
||||||
|
|
||||||
|
String get hash;
|
||||||
|
|
||||||
|
BuiltList<BuiltList<String>> get headers
|
||||||
|
|
||||||
|
static Serializer<PreImportResponse> get serializer =>
|
||||||
|
_$preImportResponseSerializer;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue