├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── coverage └── lcov.info ├── example ├── main.dart └── pubspec.yaml ├── lib ├── filesize.dart └── src │ └── filesize.dart ├── pubspec.yaml └── test └── filesize_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/filesize/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/filesize/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/filesize/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/filesize/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/filesize/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/filesize/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/filesize/HEAD/coverage/lcov.info -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/filesize/HEAD/example/main.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/filesize/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /lib/filesize.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/filesize/HEAD/lib/filesize.dart -------------------------------------------------------------------------------- /lib/src/filesize.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/filesize/HEAD/lib/src/filesize.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/filesize/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/filesize_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/filesize/HEAD/test/filesize_test.dart --------------------------------------------------------------------------------