Initial commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class Todo {
|
||||
Todo({required this.title, required this.widget, required this.checked});
|
||||
|
||||
String title;
|
||||
Widget widget;
|
||||
bool checked;
|
||||
}
|
||||
Reference in New Issue
Block a user