Hi,
Waiting for this option, I have found the way to do that by modifying the code.
1. Go to folder /wp-content/plugins/best-restaurant-menu-by-pricelisto/templates/func-temp
2. Open the PHP file correponding to your theme template.
3. Search for this line <div class="brm-item-price"><?php echo esc_html( stripslashes ( $currency . $item->price ) ); ?></div>
4. Replace it by <div class="brm-item-price"><?php echo esc_html( stripslashes ( $item->price . $currency ) ); ?></div>
Thanks @maxcdr for that example. I will add it to the list for future enhancements.