wordSpacing method

T wordSpacing(
  1. double? space
)

Implementation

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