10 lines
233 B
Dart
10 lines
233 B
Dart
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;
|
|
} |