baseCompareTo method

RenderComparison baseCompareTo(
  1. SpecialInlineSpanBase other
)

Implementation

RenderComparison baseCompareTo(SpecialInlineSpanBase other) {
  if (other.actualText != actualText) {
    return RenderComparison.paint;
  }

  if (other.start != start) {
    return RenderComparison.layout;
  }

  return RenderComparison.identical;
}