getUrl method
Implementation
String getUrl() {
String uri = getUri();
String? url = defaultBaseUrl;
if (url == null || url.isEmpty) {
TGLog.e(
"Set baseUrl once: TGService.init(baseUrl: 'https://api.product.com/v1')");
}
return prepareUrl(url, uri);
}