├── .github ├── FUNDING.yml └── workflows │ ├── .heroku │ └── dart.yml ├── .gitignore ├── BinChecker.iml ├── LICENSE ├── Procfile ├── README.md ├── analysis_options.yaml ├── app.json ├── bin ├── BinChecker.dart ├── logo.png ├── spam.webp ├── welcome_animation.tgs ├── welcome_photo.webp └── welcome_photo2.webp └── pubspec.yaml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/.heroku: -------------------------------------------------------------------------------- 1 | mathew.david1002 2 | -------------------------------------------------------------------------------- /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/.gitignore -------------------------------------------------------------------------------- /BinChecker.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/BinChecker.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/app.json -------------------------------------------------------------------------------- /bin/BinChecker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/bin/BinChecker.dart -------------------------------------------------------------------------------- /bin/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/bin/logo.png -------------------------------------------------------------------------------- /bin/spam.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/bin/spam.webp -------------------------------------------------------------------------------- /bin/welcome_animation.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/bin/welcome_animation.tgs -------------------------------------------------------------------------------- /bin/welcome_photo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/bin/welcome_photo.webp -------------------------------------------------------------------------------- /bin/welcome_photo2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/bin/welcome_photo2.webp -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAkashPattnaik/BinChecker/HEAD/pubspec.yaml --------------------------------------------------------------------------------