getRawValue method
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;
}
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;
}