fromMap static method

MessageForumTopicCreated? fromMap(
  1. Map<String, dynamic>? _map
)
override

Construct from Map.

Implementation

static MessageForumTopicCreated? 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 name = _map['name']! as String;
  var icon = ForumTopicIcon.fromMap(_map['icon'])!;
  return MessageForumTopicCreated(
    extra: extra,
    clientId: clientId,
    name: name,
    icon: icon,
  );
}