wordSpacing method

VxSelectableTextBuilder wordSpacing(
  1. double spacing
)

The amount of space (in logical pixels) to add at each sequence of white-space (i.e. between each word). A negative value can be used to bring the words closer.

Implementation

VxSelectableTextBuilder wordSpacing(double spacing) {
  _wordSpacing = spacing;
  return this;
}