postAuth method

Future<Response> postAuth(
  1. String path,
  2. String content,
  3. PrivateKey withPrivateKey
)

Implementation

Future<Response> postAuth(
    String path, String content, PrivateKey withPrivateKey) async {
  return await post(path, content,
      customHeaders: _authHeader(withPrivateKey, content: content));
}