computedLineDecorationStyle method

Style? computedLineDecorationStyle(
  1. String styleKey
)

Implementation

Style? computedLineDecorationStyle(String styleKey) {
  final style = lineDecorationStyles[styleKey];
  if (style == null) {
    return null;
  }
  return style.inherit(base).inline(true);
}