notFoundPostOrNull property

NotFoundPost? get notFoundPostOrNull

Returns NotFoundPost if this data is NotFoundPost, otherwise null.

Implementation

NotFoundPost? get notFoundPostOrNull => isNotFoundPost ? notFoundPost : null;