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