onMarkup method
Implementation
@override
HypertextSpan onMarkup(List<HypertextSpan>? children, MarkupContext ctx) {
final color = optColor(ctx);
TextStyle? style = color != null ? TextStyle(color: color) : null;
return HypertextTextSpan(children: children, style: style);
}