NoteUpdate constructor

NoteUpdate({
  1. required String text,
  2. required String updatedBy,
})

Implementation

NoteUpdate({
  required this.text,
  required this.updatedBy,
});