set static method
Implementation
static void set(final String key, final dynamic value) {
if (value is String) sharedPreferences.setString(key, value);
if (value is bool) sharedPreferences.setBool(key, value);
if (value is double) sharedPreferences.setDouble(key, value);
if (value is int) sharedPreferences.setInt(key, value);
}