mapOrNull<TResult extends Object?> method
- @optionalTypeArgs
- TResult? postView(
- UReplyRefParentPostView value
- TResult? notFoundPost(
- UReplyRefParentNotFoundPost value
- TResult? blockedPost(
- UReplyRefParentBlockedPost value
- TResult? unknown(
- UReplyRefParentUnknown value
A variant of map
that fallback to returning null
.
It is equivalent to doing:
switch (sealedClass) {
case final Subclass value:
return ...;
case _:
return null;
}
Implementation
@optionalTypeArgs TResult? mapOrNull<TResult extends Object?>({TResult? Function( UReplyRefParentPostView value)? postView,TResult? Function( UReplyRefParentNotFoundPost value)? notFoundPost,TResult? Function( UReplyRefParentBlockedPost value)? blockedPost,TResult? Function( UReplyRefParentUnknown value)? unknown,}){
final _that = this;
switch (_that) {
case UReplyRefParentPostView() when postView != null:
return postView(_that);case UReplyRefParentNotFoundPost() when notFoundPost != null:
return notFoundPost(_that);case UReplyRefParentBlockedPost() when blockedPost != null:
return blockedPost(_that);case UReplyRefParentUnknown() when unknown != null:
return unknown(_that);case _:
return null;
}
}