saveFollowSystem method

Future<void> saveFollowSystem(
  1. bool follow
)

Save the follow system theme preference.

Implementation

Future<void> saveFollowSystem(bool follow) async {
  await _secureStorage.write(key: _followSystemKey, value: follow.toString());
}