Todo constructor

Todo({
  1. required String title,
  2. bool isCompleted = false,
})

Implementation

Todo({required this.title, this.isCompleted = false});