wordSpacing method

T wordSpacing(
  1. double space
)

Implementation

T wordSpacing(double space) => copyWith(
      style: (style ?? const TextStyle()).copyWith(
        wordSpacing: space,
      ),
    ) as T;