can we send raw json in get method in flutter

Solutions on MaxInterview for can we send raw json in get method in flutter by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
showing results for - "can we send raw json in get method in flutter"
Karson
16 May 2016
1import 'package:http/http.dart' as http;
2import 'dart:convert';
3class API
4{
5//replace with your endpoint
6static String BASE_URL = 'https://some-url/api/';
7
8 static Future<List<ExampleData>> getRequest() async {
9   
10    Response res = await http.get(BASE_URL+'example');
11    
12      if (res.statusCode == 200) {
13      List<dynamic> body = jsonDecode(res.body);
14        
15     // complete by parsing the json body return into ExampleData object and return
16     //.................
17      }
18}
19
20}
21
Mira
23 Oct 2017
1final queryParameters = {
2  'name': 'Bob',
3  'age': '87',
4};
5final uri = Uri.http('www.example.com', '/path', queryParameters);
6final headers = {HttpHeaders.contentTypeHeader: 'application/json'};
7final response = await http.get(uri, headers: headers);
8
similar questions