Answers for "get method in flutter"

2

get flutter

import 'package:http/http.dart' as http;

    var url = Uri.parse('https://jsonplaceholder.typicode.com/todos/1');
    var response = await http.get(url);
    Map data = jsonDecode(response.body);
    print(data);
Posted by: Guest on September-19-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

flutter get

dependencies:
  get: ^4.3.8
Posted by: Guest on August-23-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language