writeMuted method

void writeMuted(
  1. Object idOrText, {
  2. GestureRecognizer? onGesture,
})

Implementation

void writeMuted(Object idOrText, {
  GestureRecognizer? onGesture
}) {
  final text = theme.translate(text: idOrText);
  spans.add(TextSpan(text: text, style: styleMuted, recognizer: onGesture));
}