equal method

bool equal(
  1. SpecialInlineSpanBase other
)

Implementation

bool equal(SpecialInlineSpanBase other) {
  return other.start == start &&
      other.deleteAll == deleteAll &&
      other.actualText == actualText;
}