getVerboseHistory method

List<Map> getVerboseHistory()

Get history of game (moves) with details for each move. Returns a List

Implementation

List<Map> getVerboseHistory() {
  List<Map> history = _logic.getHistoryVerbose();
  return history;
}