Removes this span from its parent.
Returns true if removed, false if this span has no parent.
@override bool remove() { final p = _parent; if (p == null) return false; p._removeChild(this); return true; }