get method

Future<Response?> get(
  1. String url, {
  2. Map<String, dynamic>? headers,
  3. Options? options,
})

Implementation

Future<Response?> get(String url,
    {Map<String, dynamic>? headers, Options? options}) {
  return request(url: url, method: 'GET', headers: headers, options: options);
}