Answers for "http package flutter"

8

flutter http

dependencies:
  http: ^0.12.0+4
Posted by: Guest on March-27-2020
0

flutter http

dependencies:
  http:^0.12.2

import 'package:http/http.dart';
Posted by: Guest on January-17-2021
1

how to perform get request in flutter

import 'package:http/http.dart' as http;
import 'dart:convert';
class API
{
//replace with your endpoint
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);
        
     // complete by parsing the json body return into ExampleData object and return
     //.................
      }
}

}
Posted by: Guest on August-29-2020
0

http flutter

http: ^0.12.2
Posted by: Guest on December-18-2020
0

http flutter

http: ^0.13.1
Posted by: Guest on April-09-2021
2

http package flutter

dependencies:
  http: ^0.12.1
Posted by: Guest on June-27-2020

Browse Popular Code Answers by Language