fromMap static method
override
Construct from Map.
Implementation
static UpdateStorySendSucceeded? 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 story = Story.fromMap(_map['story'])!;
var old_story_id = _map['old_story_id']! as int;
return UpdateStorySendSucceeded(
extra: extra,
clientId: clientId,
story: story,
old_story_id: old_story_id,
);
}