get method

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

Implementation

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