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