Flutter -- Dart 单例模式

class ShardPreferencesUtil {
ShardPreferencesUtil._();

static ShardPreferencesUtil _instance;

static ShardPreferencesUtil getInstance() {
if (_instance == null) {
instance = ShardPreferencesUtil.();
}
return _instance;
}
}