Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

flutter http get json to map

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

final response = await http.get(someEndPoint);
final Map<String, dynamic> data = json.decode(response.body);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #flutter #http #json #map
ADD COMMENT
Topic
Name
1+5 =