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