DEV Community

Discussion on: Create a Todos app with Flutter and Provider

Collapse
 
mihaelfi profile image
fild

Hey, great tutorial.
Shouldn't it be final List<Task> _tasks and not final List<Todo> _todos at this part:

  final List<Todo> _todos = [
    Todo(title: 'Finish the app'),
    Todo(title: 'Write a blog post'),
    Todo(title: 'Share with community'),
  ];

?

Collapse
 
shakib609 profile image
Shakib Hossain

I am glad you liked it.
And nice catch. I'll fix it ASAP. ✌️