How we can add a custom payment method only enable for admin section in Magento?
We can enable the custom payment method only for admin by to set $_canUseInternal
to true and $_canUseCheckout
to false.
BY Best Interview Question ON 13 Jan 2019
Example
Please update these given setting in your model.
protected $_canUseInternal = true;
protected $_canUseCheckout = false;