setBool 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 setBool(final String key, final bool value) {
objectMethod(
_pointerId,
'SettingsService',
'setValueBool',
args: <String, dynamic>{'first': key, 'second': value},
);
}