17 lines
512 B
Dart
17 lines
512 B
Dart
/*
|
|
|--------------------------------------------------------------------------
|
|
| Storage Keys
|
|
| Add your storage keys here and then use them later to retrieve data.
|
|
| E.g. static String userCoins = "USER_COINS";
|
|
| String coins = NyStorage.read( StorageKey.userCoins );
|
|
|
|
|
| Learn more: https://nylo.dev/docs/4.x/storage#storage-keys
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
class StorageKey {
|
|
static String userToken = "USER_TOKEN";
|
|
|
|
/// Add your storage keys here...
|
|
}
|