getOptions method

Future getOptions()

Implementation

Future<dynamic> getOptions() async {
  final response = await request("${httpClient.baseUrl}$itemUrl", "OPTIONS");
  print(response);
  return response.headers;
}