writeIfPastMark method
Implementation
void writeIfPastMark(Object idOrText, {
TextStyle? style,
GestureRecognizer? onGesture
}) {
if(markPoint < spans.length) {
final text = theme.translate(text: idOrText);
spans.add(TextSpan(text: text, style: style, recognizer: onGesture));
}
}