wordSpacing method

Text 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

Text wordSpacing(double spacing) =>
    _copyWith(style: TextStyle(wordSpacing: spacing));