fromMap static method
override
Construct from Map.
Implementation
static ImportMessages? 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 message_file = InputFile.fromMap(_map['message_file'])!;
var attached_files = List<InputFile>.from(
(_map["attached_files"] ?? []).map(
(e) => InputFile.fromMap(e),
),
);
return ImportMessages(
extra: extra,
clientId: clientId,
chat_id: chat_id,
message_file: message_file,
attached_files: attached_files,
);
}