put method

Future<Response> put(
  1. String uri,
  2. String body,
  3. Authentication authentication
)

Implementation

Future<http.Response> put(
        String uri, String body, Authentication authentication) async =>
    await http.put(Uri.parse(_apiUrl.toString() + uri),
        headers: await (_getHeaders(authentication)), body: body);