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