updateLetterSpacingSetting method

void updateLetterSpacingSetting(
  1. double newSetting
)

Update the letter spacing in the application and in the shared preferences.

Implementation

void updateLetterSpacingSetting(double newSetting) {
  textSettings.value = textSettings.value.copyWith(
    letterSpacing: newSetting,
  );
}