Future<void> read(String? pixel) async { if (pixel != null) { var uri = Uri.parse(pixel); await HttpClient.get(uri); } }