arrowUp property

List<int> arrowUp
final

Arrows up. Consists of three bytes in Unix like systems (including MacOS). For historical reasons, you can also use 'w' insted of arrow up on Windows. It is packed into a single element list in order to not break the spread syntax.

Implementation

static final arrowUp = Platform.isWindows ? [WIN_UP] : [27, 91, 65];