How can I print colored debug messages with Flutter/Dart to show colored Android Studio console/logcat output? There are many dart packages that provide the escape characters for colored output but the Android Studio simply does not show them.
Some of them are: https://github.com/iamsalnikov/colorize or https://pub.dev/packages/ansicolor
Or simply some escape characters should work as well:
print('\x1B[94m $text \x1B[0m');
These messages show up like this:
[94m [36m57 2019-10-18 16:18:55.694098 FINE ui.app.dart: initial route = null[0m [0m
My question is, can I exchange the console to see the escape characters? Or just any other way?