postJson abstract method

Future<Map<String, dynamic>?> postJson(
  1. JSON? json
)

Asynchronously posts a json document to the API endpoint using POST.

Returns the (updated) json.

Implementation

Future<Map<String, dynamic>?> postJson(JSON? json);