├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── assets └── dvdb.png ├── example └── dvdb_example.dart ├── lib ├── dvdb.dart └── src │ ├── collection.dart │ ├── document.dart │ ├── dvdb_helper.dart │ ├── errors.dart │ ├── math.dart │ └── search_result.dart ├── pubspec.lock ├── pubspec.yaml └── test └── dvdb_test.dart /.gitignore: -------------------------------------------------------------------------------- 1 | .dart_tool 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /assets/dvdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/assets/dvdb.png -------------------------------------------------------------------------------- /example/dvdb_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/example/dvdb_example.dart -------------------------------------------------------------------------------- /lib/dvdb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/lib/dvdb.dart -------------------------------------------------------------------------------- /lib/src/collection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/lib/src/collection.dart -------------------------------------------------------------------------------- /lib/src/document.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/lib/src/document.dart -------------------------------------------------------------------------------- /lib/src/dvdb_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/lib/src/dvdb_helper.dart -------------------------------------------------------------------------------- /lib/src/errors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/lib/src/errors.dart -------------------------------------------------------------------------------- /lib/src/math.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/lib/src/math.dart -------------------------------------------------------------------------------- /lib/src/search_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/lib/src/search_result.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/dvdb_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastCodeAI/DVDB/HEAD/test/dvdb_test.dart --------------------------------------------------------------------------------