post method

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

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

Implementation

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