post method

Future post(
  1. dynamic uri,
  2. dynamic json
)

Pushes data to database using a HTTP POST request. The response from a successful request contains a key of the new data being added.

See: firebase.google.com/docs/reference/rest/database/#section-post.

Implementation

Future<dynamic> post(uri, json) => send('POST', uri, json: json);