fromJson static method
Inherited by: ActiveStoryStateLive ActiveStoryStateRead ActiveStoryStateUnread
Implementation
static ActiveStoryStateUnread? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const ActiveStoryStateUnread();
}