class StoryList { int? nodeId; int? edgeId; String? title; int? cid; int? startPos; String? cover; int? isCurrent; int? cursor; StoryList({ this.nodeId, this.edgeId, this.title, this.cid, this.startPos, this.cover, this.isCurrent, this.cursor, }); factory StoryList.fromJson(Map json) => StoryList( nodeId: json['node_id'] as int?, edgeId: json['edge_id'] as int?, title: json['title'] as String?, cid: json['cid'] as int?, startPos: json['start_pos'] as int?, cover: json['cover'] as String?, isCurrent: json['is_current'] as int?, cursor: json['cursor'] as int?, ); }