computedDecorationStyle method

Style? computedDecorationStyle(
  1. String styleKey
)

Implementation

Style? computedDecorationStyle(String styleKey) {
  final style = decorationStyles[styleKey];
  if (style == null) {
    return null;
  }
  return computedText.copy().inherit(style).inline(true);
}