revisionKref property

Kref? get revisionKref

Gets the revision kref (without artifact).

Implementation

Kref? get revisionKref {
  final rev = revision;
  if (rev == null) return null;
  final path = _getPath();
  return Kref('kref://$path?r=$rev', validate: false);
}