computedDecorationStyle method

Style? computedDecorationStyle(
  1. String styleKey
)

Implementation

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