getNotifObject method

Notif? getNotifObject(
  1. String json
)

Implementation

Notif? getNotifObject(String json){
  try {
    Map<String, dynamic> map = jsonDecode(json);
    Notif notif = Notif.fromJson(map);
    return notif;
  } catch (error) {
    return null;
  }
}