rows top-level property

Map<int, String> rows
final

Creating a map that maps the row number to the row letter.

Implementation

final Map<int, String> rows = <int, String>{
  0: "f",
  1: "e",
  2: "d",
  3: "c",
  4: "b",
  5: "a",
};