http library flutter code example
Example 1: flutter http
dependencies:
http: ^0.12.0+4
Example 2: how to perform get request in flutter
import 'package:http/http.dart' as http;
import 'dart:convert';
class API
{
static String BASE_URL = 'https://some-url/api/';
static Future<List<ExampleData>> getRequest() async {
Response res = await http.get(BASE_URL+'example');
if (res.statusCode == 200) {
List<dynamic> body = jsonDecode(res.body);
}
}
}
Example 3: http flutter
http: ^0.12.2
Example 4: http package flutter
dependencies:
http: ^0.12.1