Note constructor

Note({
  1. int? id,
  2. required String title,
  3. required String body,
  4. required String date,
})

Implementation

Note({
  this.id,
  required this.title,
  required this.body,
  required this.date,
});