asNullable method

MarshalledObject? asNullable()

Return this object as nullable type, flowing through null, if null. Used in RPC code generator to short-circuit unmarshalling logic if return type is null.

Implementation

MarshalledObject? asNullable()
{
  return isNull() ? null : this;
}