equal method

bool equal(
  1. SpecialInlineSpanBase other
)
inherited

Implementation

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