fromMap static method
override
Construct from Map.
Implementation
static ChatActiveStories? fromMap(Map<String, dynamic>? _map) {
if (_map == null) return null;
var _ = _map["@type"];
if (_ != CONSTRUCTOR) return null;
var extra = _map['@extra'];
var clientId = _map['@clientId'];
var chat_id = _map['chat_id']! as int;
var list = StoryList.fromMap(_map['list']);
var order = _map['order']! as int;
var max_read_story_id = _map['max_read_story_id']! as int;
var stories = List<StoryInfo>.from(
(_map["stories"] ?? []).map(
(e) => StoryInfo.fromMap(e),
),
);
return ChatActiveStories(
extra: extra,
clientId: clientId,
chat_id: chat_id,
list: list,
order: order,
max_read_story_id: max_read_story_id,
stories: stories,
);
}