showProductNotRatedDialog function

void showProductNotRatedDialog(
  1. BuildContext context
)

Implementation

void showProductNotRatedDialog(BuildContext context) {
  popAlert(
    context,
    'Product Not Rated',
    'This product cannot be rated because required parameters are missing or incorrect.',
  );
}