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