letterSpacing method

Text letterSpacing(
  1. double spacing
)

The amount of space (in logical pixels) to add between each letter.

A negative value can be used to bring the letters closer.

Implementation

Text letterSpacing(double spacing) =>
    _copyWith(style: TextStyle(letterSpacing: spacing));