|
5 | 5 |
|
6 | 6 | import 'package:meta/meta.dart';
|
7 | 7 | import 'package:scrobblenaut/src/core/lastfm.dart';
|
8 |
| -import 'package:scrobblenaut/src/methods/album_methods.dart'; |
9 |
| -import 'package:scrobblenaut/src/methods/artist_methods.dart'; |
10 |
| -import 'package:scrobblenaut/src/methods/chart_methods.dart'; |
11 |
| -import 'package:scrobblenaut/src/methods/geo_methods.dart'; |
12 |
| -import 'package:scrobblenaut/src/methods/library_methods.dart'; |
13 |
| -import 'package:scrobblenaut/src/methods/tag_methods.dart'; |
14 |
| -import 'package:scrobblenaut/src/methods/track_methods.dart'; |
15 |
| -import 'package:scrobblenaut/src/methods/user_methods.dart'; |
| 8 | +import 'package:scrobblenaut/lastfm_methods.dart'; |
16 | 9 |
|
17 | 10 | /// This connects all the various methods [LastFM] can provide.
|
18 | 11 | ///
|
@@ -46,43 +39,27 @@ class Scrobblenaut {
|
46 | 39 | /// It returns the LastFM object created.
|
47 | 40 | LastFM get api => _api;
|
48 | 41 |
|
49 |
| - /// Use this to use [Album's methods]. |
50 |
| - /// |
51 |
| - /// [Album's methods]: [AlbumMethods] |
| 42 | + /// Use this to use [AlbumMethods]. |
52 | 43 | AlbumMethods get album => _albumMethods;
|
53 | 44 |
|
54 |
| - /// Use this to use [Artist's methods]. |
55 |
| - /// |
56 |
| - /// [Artist's methods]: [ArtistMethods] |
| 45 | + /// Use this to use [ArtistMethods]. |
57 | 46 | ArtistMethods get artist => _artistMethods;
|
58 | 47 |
|
59 |
| - /// Use this to use [Chart's methods]. |
60 |
| - /// |
61 |
| - /// [Chart's methods]: [ChartMethods] |
| 48 | + /// Use this to use [ChartMethods]. |
62 | 49 | ChartMethods get chart => _chartMethods;
|
63 | 50 |
|
64 |
| - /// Use this to use [Geo's methods]. |
65 |
| - /// |
66 |
| - /// [Geo's methods]: [GeoMethods] |
| 51 | + /// Use this to use [GeoMethods]. |
67 | 52 | GeoMethods get geo => _geoMethods;
|
68 | 53 |
|
69 |
| - /// Use this to use [Library's methods]. |
70 |
| - /// |
71 |
| - /// [Library's methods]: [LibraryMethods] |
| 54 | + /// Use this to use [LibraryMethods]. |
72 | 55 | LibraryMethods get library => _libraryMethods;
|
73 | 56 |
|
74 |
| - /// Use this to use [Tag's methods]. |
75 |
| - /// |
76 |
| - /// [Tag's methods]: [TagMethods] |
| 57 | + /// Use this to use [TagMethods]. |
77 | 58 | TagMethods get tag => _tagMethods;
|
78 | 59 |
|
79 |
| - /// Use this to use [Track's methods]. |
80 |
| - /// |
81 |
| - /// [Track's methods]: [TrackMethods] |
| 60 | + /// Use this to use [TrackMethods]. |
82 | 61 | TrackMethods get track => _trackMethods;
|
83 | 62 |
|
84 |
| - /// Use this to use [User's methods]. |
85 |
| - /// |
86 |
| - /// [User's methods]: [UserMethods] |
| 63 | + /// Use this to use [UserMethods]. |
87 | 64 | UserMethods get user => _userMethods;
|
88 | 65 | }
|
0 commit comments