Files
flutter-go/lib/resources/shared_preferences_keys.dart
sanfan.hx 54c884cbd8 add sp
2019-02-01 12:49:12 +08:00

29 lines
405 B
Dart

/**
* Created with Android Studio.
* User: 三帆
* Date: 31/01/2019
* Time: 18:13
* email: sanfan.hx@alibaba-inc.com
* tartget: xxx
*/
enum DateType {
Int,
Double,
Bool,
String,
Dynamic
}
class spKey {
String name;
DateType type;
spKey({this.name, this.type});
}
class sharedPreferencesKeys {
static spKey loginWelcome = spKey(name: 'loginWelcone', type: DateType.Bool);
}