Skip to main content

TaskForm constructor

const TaskForm({required Future<bool> onSave(), required String title, required String actionText, Key? key})

Implementation

const TaskForm({
required this.onSave,
required this.title,
required this.actionText,
Key? key,
}) : super(key: key);