import 'package:http/http.dart';
void main() async {
String url = 'https://jsonplaceholder.typicode.com/todos/1';
var response = await get(Uri.parse(url));
print(response.body);
}
import 'package:http/http.dart';
void main() async {
String url = 'https://jsonplaceholder.typicode.com/todos/1';
var response = await get(Uri.parse(url));
print(response.body);
}