get method

Future<Response> get(
  1. String path, {
  2. Map<String, String>? customHeaders,
})

Implementation

Future<Response> get(String path,
    {Map<String, String>? customHeaders}) async {
  return _config.client.get(
    Uri.parse('$baseUrl$path'),
    headers: headers(customHeaders),
  );
}