putDouble static method
Saves a double value to persistent storage under the specified content provider.
If value is null, this is equivalent to calling remove() on the key.
Implementation
static Future<dynamic> putDouble(String key, double? value) {
return _setValue('Double', key, value);
}