getTag method

Future<GitTag> getTag(
  1. RepositorySlug slug,
  2. String? sha
)

Fetches a tag from the repo given a SHA.

API docs: https://developer.github.com/v3/git/tags/#get-a-tag

Implementation

Future<GitTag> getTag(RepositorySlug slug, String? sha) =>
    github.getJSON('/repos/${slug.fullName}/git/tags/$sha',
        convert: (dynamic i) => GitTag.fromJson(i),
        statusCode: StatusCodes.OK);