import 'main.dart'; class Task { final String title; final TaskPriority priority; Task(this.title, this.priority); }