actualVersion property

int? actualVersion

If available, the current version of the stream that the operation was attempted on.

Implementation

int? get actualVersion => actualStreamRevision == StreamRevision.none
    ? null
    : actualStreamRevision.value.toInt();