get method
Perform GET request
Implementation
Future<HTTPResult> get(
String endpoint, {
Map<String, String>? headers,
bool requiresAuth = true,
Duration? timeout,
}) async {
return _request(
method: 'GET',
endpoint: endpoint,
headers: headers,
requiresAuth: requiresAuth,
timeout: timeout,
);
}