dart_newsapi 0.1.1+2 copy "dart_newsapi: ^0.1.1+2" to clipboard
dart_newsapi: ^0.1.1+2 copied to clipboard

A Dart package for newsapi.org. An API Key from newsapi.org is required to use this package. Get one for free at newsapi.org Using only http package, nothing more nothing less.

example/main.dart

import 'package:dart_newsapi/dartnewsapi.dart';


void main(){
  NewsAPI newsAPI = new NewsAPI('YOUR-API-KEY-HERE');

  newsAPI.topHeadlines({'country': 'no'}).then((List<Article> articles) {
    print(articles.first.source.name);
  });

  newsAPI.sources({}).then((List<Source> sources) {
    print(sources.first.name);
  });
}
2
likes
30
pub points
0%
popularity

Publisher

verified publisherhareland.eu

A Dart package for newsapi.org. An API Key from newsapi.org is required to use this package. Get one for free at newsapi.org Using only http package, nothing more nothing less.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http

More

Packages that depend on dart_newsapi