Created
June 2, 2019 20:02
-
-
Save lukaszciastko/4d12e8a8a8d76ee4e73a375ce83f63d9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:view_model/view_model.dart'; | |
import 'package:view_model_tasks/task.dart'; | |
class TaskListViewModel extends ViewModel { | |
final List<Task> tasks = <Task>[ | |
const Task(id: 0, name: 'Create a new Flutter app'), | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment