readBool static method
Implementation
static Future<bool?> readBool(String key, {String MMKVId = "default"}) async {
bool? boolResult;
String? boolString = await SharedStore.readValue(key, valueType.boolType, MMKVId);
if (boolString != null) {
boolResult = boolString == "true" ? true : false;
}
return boolResult;
}