commerceShare static method
void
commerceShare({
Implementation
static void commerceShare(
{required AdBrixSharingChannel sharingChannel,
required AdBrixRmCommerceProductModel productModel,
Map<String, dynamic>? attr}) {
Map<String, dynamic> params = {
'sharingChannel': sharingChannel.toString().split('.').last,
'productModel': productModel.getProductModel(),
};
_invokeWithAttr(
_AbxAPI.commerceShare.toString().split('.').last, params, attr);
}