saveStripComments method

Future<void> saveStripComments(
  1. bool value
)

Save strip comments setting.

Implementation

Future<void> saveStripComments(bool value) async {
  final prefs = await SharedPreferences.getInstance();
  await prefs.setBool('stripComments', value);
}