NotificationsData.fromRawJson constructor

NotificationsData.fromRawJson(
  1. String str
)

Implementation

factory NotificationsData.fromRawJson(String str) =>
    NotificationsData.fromJson(
      json.decode(str) as Map<String, dynamic>,
    );