Getting started with Config.apex
Write Configuration
We can write configurations too, using the config service.
configService.write('/System/version', new Map{
'value': '1.0.0'
});
// equivalent to
configService.put('/System/version', new Map{
'value': '1.0.0'
});
We can pass in both params from the request config url and the data of Map
.