factory Notify.fromMap(Map<String, dynamic>? map) { if (map == null) return Notify(); return Notify( time: map['time'], atSign: map['atSign'], message: map['message']); }