Gets the Track with the specified trackId.
trackId
Future<Track> get(int trackId) async { throwIfNegative(trackId, 'trackId'); final track = await _getTrackResponse(trackId); return Track.fromJson(track); }