setDouble method
Set a value for the given key
Parameters
- IN key The key
- IN value The value
Throws
- An exception if it fails
Implementation
void setDouble(final String key, final double value) {
objectMethod(
_pointerId,
'SettingsService',
'setValueDouble',
args: <String, dynamic>{'first': key, 'second': value},
);
}