arrowDown property
Arrow down. Consists of three bytes. For historical reasons, you can also use 's' instead of arrow down on Windows. It is packed into a single element list in order to not break the spread syntax.
Implementation
static final List<int> arrowDown = Platform.isWindows
? [winDown]
: [27, 91, 66];