post method

Future<HttpResponse> post(
  1. String resourceUrl,
  2. dynamic data, {
  3. String? baseUrl,
  4. String? username,
  5. String? password,
  6. Dio? dioTestClient,
})

Implementation

Future<HttpResponse> post(String resourceUrl, dynamic data,
        {String? baseUrl,
        String? username,
        String? password,
        Dio? dioTestClient}) =>
    HttpClient.post(
      resourceUrl,
      data,
      baseUrl: baseUrl,
      username: username,
      password: password,
      database: database,
      dioTestClient: dioTestClient,
    );