How to get the config value of the sales channel?
I am doing with this
$this->systemConfigService->get('pluginName.config.enable')
but it returned only the All Sales Channels config value.
How can I get the config value of a particular sales channel?
>Solution :
The second argument of the get method takes the id of a sales_channel entity.
public function get(string $key, ?string $salesChannelId = null)