starGist method

Future<bool> starGist(
  1. String id
)

Star the specified Gist.

API docs: https://developer.github.com/v3/gists/#star-a-gist

Implementation

Future<bool> starGist(String id) {
  return github.request('POST', '/gists/$id/star').then((response) {
    return response.statusCode == 204;
  });
}