isReactive<T> function
Checks if a value is reactive object.
Returns true if the value is an instance of private.Reactive,
otherwise returns false.
Implementation
bool isReactive<T>(T value) => value is private.Reactive;
Checks if a value is reactive object.
Returns true if the value is an instance of private.Reactive,
otherwise returns false.
bool isReactive<T>(T value) => value is private.Reactive;