import 'package:flutter/material.dart'; import 'package:todoapp/elems/todo.dart'; class TodoList { TodoList({required this.title, required this.widget, required this.todos}); String title; Widget widget; List todos; }