issue 0.0.4 copy "issue: ^0.0.4" to clipboard
issue: ^0.0.4 copied to clipboard

A CLI tool to help cli package authors make raising issues like bug reports more interactive for their users.

example/issue.dart

import 'package:issue/issue.dart';

void main(List<String> args) async {
  IssueConfig config = IssueConfig(
    template: FlutterBugReportIssueTemplate(
      assignees: ['werainkhatri'],
      labels: ['bug'],
      credits: true,
    ),
    tracker: GitHubIssueTracker(
      organization: 'werainkhatri',
      repository: 'issue',
    ),
  );

  try {
    await buildIssueAndOpen(config);
  } on UserInterruptException catch (e) {
    print(e);
  }
}
2
likes
140
pub points
0%
popularity

Publisher

unverified uploader

A CLI tool to help cli package authors make raising issues like bug reports more interactive for their users.

Repository
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

ansi_styles, equatable, interact, path

More

Packages that depend on issue