"<p>In this video we are going to work on a new task in our Flutter To Do Application.<br /> The task is : Create our Model Task.</p> <p>Here is the code we wrote in our Task model:</p> <pre> <code>class Task{ String title; bool status; String description; Task(this.title,this.status,this.description); }</code></pre>"