getFirstTimeLogin method
Implementation
bool getFirstTimeLogin() {
final storedValue = _getValue(AppConstants.firstTimeLoginKey);
if (storedValue is String) {
return storedValue.toLowerCase() == 'true';
}
return true;
}
bool getFirstTimeLogin() {
final storedValue = _getValue(AppConstants.firstTimeLoginKey);
if (storedValue is String) {
return storedValue.toLowerCase() == 'true';
}
return true;
}