getAllGames method

List<CustomerPlaceContent> getAllGames()

Implementation

List<CustomerPlaceContent> getAllGames() {
  return tourContents.where((content) => content.getTemplate().isGame).toList();
}