getBool method

Future<bool> getBool(
  1. UserPrefKey key
)

Implementation

Future<bool> getBool(UserPrefKey key) async {
  return (await shared.get(prefName(key))) == "true";
}