get method

Future<List<int>> get(
  1. String path
)

Make an HTTP GET request with failover support

Implementation

Future<List<int>> get(String path) async {
  return await _request(path, 'GET');
}