getUrl method

Future<String> getUrl()

a method that allows us to customize even complex url generations by default, we just return the url passed to the request here.

Implementation

Future<String> getUrl() async {
  return url;
}