Gets the Track associated with the provided url.
url
Future<Track> getByUrl(String url) async { final json = await _controller.resolveUrl(url); final track = jsonDecode(json); return Track.fromJson(track); }