currentReleasePath property
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;
}