getCoreConstantsStorageKeysTemplate function
String
getCoreConstantsStorageKeysTemplate(
- String projectName
)
Implementation
String getCoreConstantsStorageKeysTemplate(String projectName) {
return '''
class StorageKeys {
/// Authentication
static const authToken = "auth_token";
static const accessToken = "access_token";
static const refreshToken = "refresh_token";
/// User
static const userData = "user_data";
static const loginResponse = "login_response";
/// App
static const deviceId = "device_id";
static const isLoggedIn = "is_logged_in";
/// intoroduction
static const hasSeenIntro = "has_seen_intro";
static const profilePercentage = "profile_percentage";
}
''';
}