fetch method
GET request
Implementation
Future<Response> fetch(PayMongoOptions options) async {
final http = PayMongoHttp(apiKey);
final response =
await http.get(Uri.https(url, "v1${options.path}", options.params));
http.close();
return response;
}