get method

Future<Response> get(
  1. String uri,
  2. Authentication authentication
)

Implementation

Future<http.Response> get(String uri, Authentication authentication) async =>
    await http.get(Uri.parse(_apiUrl.toString() + uri),
        headers: await (_getHeaders(authentication)
            as Future<Map<String, String>?>));