put method

Future put(
  1. String path, [
  2. Object? body
])

PUT /api/v1[path] with an optional JSON body.

Implementation

Future<dynamic> put(String path, [Object? body]) => _send('PUT', path, body);