Creating a map that maps the row number to the row letter.
final Map<int, String> rows = <int, String>{ 0: "f", 1: "e", 2: "d", 3: "c", 4: "b", 5: "a", };