isReactive<T> function

bool isReactive<T>(
  1. T value
)

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;