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