updateLightOptions method
Implementation
Future<bool> updateLightOptions(KeyLightOptions newOptions) {
return http
.put(
Uri.parse(formatUrl('lights')),
body: jsonEncode(newOptions.toJSON()),
)
.then((response) {
return response.statusCode == 200;
});
}