I am attempting to create a put request to an API using Flutter using the following function:
Future<http.Response> login(String username, String password) {
return http.put(
Uri.parse('apiurl'),
headers: <String, String>{
'Content-Type': 'application/json; charset=UTF-8',
},
body: jsonEncode(
<String, String>{'username': username, 'password': password}));
}
The issue I am running into is that it keeps erroring out at the jsonEncode line, saying it is not defined. I have included the following packages:
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
What am I missing to make the jsonEncode function exist?
You need to import:
import "dart:convert";
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With