putAsync method

Future<Response> putAsync(
  1. String requestUri,
  2. String data
)

Implementation

Future<global.Response> putAsync(String requestUri, String data) async {
  return await httpClient!.put(Uri.parse(requestUri),
      headers: {"Content-Type": "application/json"}, body: data);
}