Skip to content
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Update recipe_book.dart
  • Loading branch information
vicb committed Apr 2, 2014
1 parent daa9b71 commit 5c14f5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Chapter_05/lib/recipe_book.dart
Expand Up @@ -26,7 +26,7 @@ class RecipeBookController {
List<Recipe> recipes = [];

// Filter box
Map<String, bool> categoryFilterMap = {};
final categoryFilterMap = <String, bool>{};
String nameFilterString = "";

RecipeBookController(this._http) {
Expand Down
2 changes: 1 addition & 1 deletion Chapter_06/lib/recipe_book.dart
Expand Up @@ -34,7 +34,7 @@ class RecipeBookController {
List<Recipe> get allRecipes => _allRecipes;

// Filter box
Map<String, bool> categoryFilterMap = {};
final categoryFilterMap = <String, bool>{};
String nameFilter = "";

RecipeBookController(this._http, this.queryService) {
Expand Down

0 comments on commit 5c14f5a

Please sign in to comment.