letterSpacing method

T letterSpacing(
  1. double? space
)

Implementation

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