-
Notifications
You must be signed in to change notification settings - Fork 218
/
Copy pathclient.dart
53 lines (51 loc) · 1.32 KB
/
client.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/// Flutter News Example API Client-Side Library
library client;
export 'package:news_blocks/news_blocks.dart'
show
BlockAction,
BlockActionType,
DividerHorizontalBlock,
ImageBlock,
NewsBlock,
NewsBlocksConverter,
PostGridGroupBlock,
PostGridTileBlock,
PostLargeBlock,
PostMediumBlock,
PostSmallBlock,
SectionHeaderBlock,
SpacerBlock,
Spacing,
TextCaptionBlock,
TextCaptionColor,
TextHeadlineBlock,
TextLeadParagraphBlock,
TextParagraphBlock,
TrendingStoryBlock,
VideoBlock;
export 'src/client/flutter_news_example_api_client.dart'
show
FlutterNewsExampleApiClient,
FlutterNewsExampleApiMalformedResponse,
FlutterNewsExampleApiRequestFailure,
TokenProvider;
export 'src/data/models/models.dart'
show
Article,
Category,
Feed,
RelatedArticles,
Subscription,
SubscriptionCost,
SubscriptionPlan,
User;
export 'src/models/models.dart'
show
ArticleResponse,
CategoriesResponse,
CurrentUserResponse,
FeedResponse,
PopularSearchResponse,
RelatedArticlesResponse,
RelevantSearchResponse,
SubscriptionsResponse;