as9OrNull property
X9?
get
as9OrNull
Return the value if it has type X9, otherwise null.
Implementation
X9? get as9OrNull => value is X9 ? value as X9 : null;
Return the value if it has type X9, otherwise null.
X9? get as9OrNull => value is X9 ? value as X9 : null;