fromJson static method
Inherited by: ActiveStoryStateLive ActiveStoryStateRead ActiveStoryStateUnread
Implementation
static ActiveStoryStateLive? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return ActiveStoryStateLive(storyId: (json['story_id'] as int?) ?? 0);
}