getRawValue method

Object? getRawValue()

Implementation

Object? getRawValue()
{
  /** Cannot allow undefined as a value to be exposed to the application, as its behavior is inconsistently handled by JSON stringify. */
  return this._rawValue ?? null;
}