getDefWordSpacing method

double? getDefWordSpacing()

get default word spacing.

Implementation

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