comment method

Future<void> comment(
  1. String body
)

Adds comment to the GitHub issue

Implementation

Future<void> comment(String body) async {
  final _issService = gh.IssuesService(github);
  try {
    await _issService.createComment(_slug, id, body);
  } catch (e) {
    log.shout(e);
    rethrow;
  }
  log.fine('Label was added');
}