getUrlPath property

String getUrlPath

this used for cache key

Implementation

String get getUrlPath {
  if (url == null) {
    return name;
  }
  final uri = Uri.parse(url!);
  return "${uri.scheme}://${uri.host}${uri.path}";
}