shouldUpdateMatrix method
Returns whether toMatrix would return a different value for this
configuration than it would for the given oldConfiguration.
Implementation
@override
bool shouldUpdateMatrix(ViewConfiguration oldConfiguration) {
final old = oldConfiguration as VirtualViewConfiguration;
return old.parent.devicePixelRatio != parent.devicePixelRatio;
}