├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── analysis_options.yaml ├── example └── example.dart ├── lib └── data_connection_checker.dart ├── pubspec.yaml └── test └── data_connection_checker_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komapeb/data_connection_checker/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komapeb/data_connection_checker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komapeb/data_connection_checker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komapeb/data_connection_checker/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komapeb/data_connection_checker/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komapeb/data_connection_checker/HEAD/example/example.dart -------------------------------------------------------------------------------- /lib/data_connection_checker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komapeb/data_connection_checker/HEAD/lib/data_connection_checker.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komapeb/data_connection_checker/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/data_connection_checker_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komapeb/data_connection_checker/HEAD/test/data_connection_checker_test.dart --------------------------------------------------------------------------------