9 lines
181 B
Dart
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;
|
|
} |