download method Null safety
Downloads the message as TMMessageSource
Implementation
Future<TMMessageSource> download() async {
var r = await Requests.get<Map>('/sources/$id', auths[accountId]!.headers)
as Map<String, dynamic>;
return messageSourceFromJson(r);
}