In-Memory
In-Memory Services
// routes.dart
app.use('/todos', new TypedService<Todo>(new MapService()));
// todo.dart
class Todo extends Model {
String title;
bool completed;
Todo({String id, this.title, this.completed : false}) {
this.id = id;
}
}Next Up...
Last updated