post method
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,
);