insertNormal method
Implementation
void insertNormal(int idx, Object idOrText, {
GestureRecognizer? onGesture
}) {
final text = theme.translate(text: idOrText);
spans.insert(idx, TextSpan(text: text, style: styleNormal, recognizer: onGesture));
}