putFloat abstract method
Stores a 32-bit floating-point value under the key, replacing any existing value.
key Key to set.
value Value to store.
Example:
// Store float values
_userStorage!.putFloat("user_rating", 4.5);
_userStorage!.putFloat("temperature", 23.5);
print("Stored float values");
Implementation
void putFloat(String key, double value);