getDefTextDecoThickness method

double? getDefTextDecoThickness()

get default decoration thickness.

Implementation

double? getDefTextDecoThickness() {
  if (style.styleMap.containsKey(type)) {
    return style.styleMap[type]!.textDecoThickness;
  }
  return null;
}