editLabel method

  1. @Deprecated('See updateLabel instead.')
Future<IssueLabel> editLabel(
  1. RepositorySlug slug,
  2. String name,
  3. String color
)

Edits a label.

API docs: https://developer.github.com/v3/issues/labels/#update-a-label

Implementation

@Deprecated('See updateLabel instead.')
Future<IssueLabel> editLabel(RepositorySlug slug, String name, String color) {
  return updateLabel(slug, name, color: color);
}