Initial commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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<Todo> todos;
|
||||
}
|
||||
Reference in New Issue
Block a user