arrowDown property

List<int> arrowDown
final

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 arrowDown = Platform.isWindows ? [WIN_DOWN] : [27, 91, 66];