getDiffById method

ComparisonDiff? getDiffById(
  1. T firstId,
  2. T secondId
)

Get the difference between two instances RenderObject by firstId and secondId.

Implementation

ComparisonDiff? getDiffById(T firstId, T secondId) {
  final first = getRenderData(firstId);
  final second = getRenderData(secondId);
  return getDiffByInstance(first, second);
}