letterSpacing method

T letterSpacing(
  1. double space
)

Implementation

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