├── .github └── workflows │ └── dart.yml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example └── README.md ├── lib └── dart_emoji.dart ├── pubspec.yaml └── test ├── dart_emoji_test.dart └── unemojify_emoji_test.dart /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GatchHQ/dart-emoji/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GatchHQ/dart-emoji/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GatchHQ/dart-emoji/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GatchHQ/dart-emoji/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GatchHQ/dart-emoji/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GatchHQ/dart-emoji/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GatchHQ/dart-emoji/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GatchHQ/dart-emoji/HEAD/example/README.md -------------------------------------------------------------------------------- /lib/dart_emoji.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GatchHQ/dart-emoji/HEAD/lib/dart_emoji.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GatchHQ/dart-emoji/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/dart_emoji_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GatchHQ/dart-emoji/HEAD/test/dart_emoji_test.dart -------------------------------------------------------------------------------- /test/unemojify_emoji_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GatchHQ/dart-emoji/HEAD/test/unemojify_emoji_test.dart --------------------------------------------------------------------------------