letterSpacing method

Text letterSpacing(
  1. double spacing
)

Implementation

Text letterSpacing(double spacing) {
  return copyWith(
    style: style.copyWith(letterSpacing: spacing),
  );
}