getReleaseByTagName method

Release? getReleaseByTagName({
  1. required String? tagName,
})

Implementation

Release? getReleaseByTagName({required String? tagName}) {
  /// we use the _ version so we can catch the exception
  /// as waitForEx translates exceptions into dcli exeptions.
  /// which sounds like a bad idea.
  return waitForEx(_getByTagName(tagName: tagName));
}