Files
todo-flutter/lib/elems/todo.dart
T
2024-09-15 17:03:37 +02:00

9 lines
181 B
Dart

import 'package:flutter/material.dart';
class Todo {
Todo({required this.title, required this.widget, required this.checked});
String title;
Widget widget;
bool checked;
}