isCompatible method

bool isCompatible(
  1. Object oldData,
  2. Object newData
)

Determine whether a cached DrawableRoot should be invalidated given old and new data.

By default, the data is always treated as compatible.

Implementation

bool isCompatible(Object oldData, Object newData) => true;