flutter_github_api 0.1.6 copy "flutter_github_api: ^0.1.6" to clipboard
flutter_github_api: ^0.1.6 copied to clipboard

outdated

A Github Api Flutter package, dependendy on github library. it can help us to easy get information from github.

example/example.dart

import 'package:flutter_github_api/flutter_github_api.dart';
import 'package:flutter_test/flutter_test.dart';

class Example {
  void main() {
    test('list issues by repository', () {
      final github = createGitHubClient();
      var slug = RepositorySlug('houko', 'flutter_github_api');
      Stream<Issue> issueStream = github.issues.listByRepo(slug);
      issueStream.listen((data) {
        expect(data, data != null);
      });
    });
  }
}
0
likes
0
pub points
0%
popularity

Publisher

verified publisherflutter-jp.com

A Github Api Flutter package, dependendy on github library. it can help us to easy get information from github.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, github

More

Packages that depend on flutter_github_api