currentReleasePath property

  1. @override
String? get currentReleasePath
override

Returns the current storage Release storage path.

Implementation

@override
String? get currentReleasePath {
  var currentRelease = this.currentRelease;
  if (currentRelease == null) return null;

  var dir = _releaseDirectoryImpl(currentRelease);
  return dir.path;
}