notFoundActorOrNull property

NotFoundActor? get notFoundActorOrNull

Returns NotFoundActor if this data is NotFoundActor, otherwise null.

Implementation

NotFoundActor? get notFoundActorOrNull =>
    isNotFoundActor ? notFoundActor : null;