Skip to content

Commit

Permalink
Removed @observable in Game
Browse files Browse the repository at this point in the history
  • Loading branch information
ggirou committed Nov 8, 2013
1 parent 40cd241 commit 230815f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Circular/lib/models.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ library game_store.model;
import 'package:observe/observe.dart';

class Game extends Object with Observable {
@observable int id;
@observable String name;
@observable String genre;
@observable String description;
@observable String image;
@observable int rating;
int id;
String name;
String genre;
String description;
String image;
int rating;

// CONSTRUCTORS
Game(this.id, this.name, this.genre, this.description, this.image, this.rating);
Expand Down

0 comments on commit 230815f

Please sign in to comment.