network static method
Implementation
static Future<TelegraphFileData> network(
String url, {
Client? httpClient,
}) async {
httpClient ??= Client();
Response response = await httpClient.get(Uri.parse(url));
return TelegraphFileData(
file_bytes: response.bodyBytes,
file_name: "blob",
);
}