hackernews_api 0.0.7 copy "hackernews_api: ^0.0.7" to clipboard
hackernews_api: ^0.0.7 copied to clipboard

A Flutter package of Hacker News API for accessing top and new stories.

Version Tag

A Flutter package of Hacker News API for accessing top and new stories.

⭐ Installing #

dependencies:
    updater: ^0.0.6

⚡ Import #

import 'package:hackernews_api/hackernews_api.dart';

Properties #

newsType → NewsType

NewsType #

NewsType.topStories
NewsType.newStories
NewsType.askStories
NewsType.showStories
NewsType.jobStories

Properties #

Type Story Poll Comment
id int
text String
title String
parent int
deleted bool
type String
by String
time int
kids List<int>
dead bool
descendants int
score int
url String
parts int

📙 How To Use #

HackerNews news = HackerNews(
    newsType: NewsType.newStories,
);

//get stories
List<Story> story = await news.getStories();

//get List of story ids
final storyIds = await news.getStoryIds();

//get story data
final story = await news.getStory(storyIds[0]);
5
likes
140
pub points
51%
popularity

Publisher

verified publishermarsad.dev

A Flutter package of Hacker News API for accessing top and new stories.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, http

More

Packages that depend on hackernews_api