fromMap static method
override
Construct from Map.
Implementation
static CreateForumTopic? 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 name = _map['name']! as String;
var icon = ForumTopicIcon.fromMap(_map['icon'])!;
return CreateForumTopic(
extra: extra,
clientId: clientId,
chat_id: chat_id,
name: name,
icon: icon,
);
}