Magento 2: Cannot getData from different controller
I have this class class Api extends MagentoFrameworkModelAbstractModel { public function __construct( MagentoFrameworkMessageManagerInterface $messageManager, MagentoFrameworkAppConfigScopeConfigInterface $scopeConfig, MagentoStoreModelStoreManagerInterface $storeManager, MyModulePaymentHelperData $helper ) { $this->messageManager = $messageManager; $this->scopeConfig = $scopeConfig; $this->storeManager = $storeManager; $this->helper = $helper; $this->contentType = $this->helper->getConfigData('content_type'); } . .…