isCompatible method

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

Tests whether the currently set PictureInfo, if any, is compatible for the given theme change.

Implementation

bool isCompatible(SvgTheme oldData, SvgTheme newData) {
  return _current?.compatibilityTester.isCompatible(oldData, newData) ?? true;
}