import 'package:demo_hive/domain/entity/reminder.dart'; class ReminderModel extends ReminderEntity{ ReminderModel({String title, String notes}):super( title: title, notes: notes, ); ReminderModel.fromJson(Mapmap) { this.title= map['title']; this.notes = map['notes']; } Map toJson(){ final Mapdata = Map(); data['title'] = this.title; data['notes'] = this.notes; return data; } }