getPriceWithCurrency static method

String getPriceWithCurrency(
  1. num price
)

Implementation

static String getPriceWithCurrency(num price) =>
    '${price.toStringAsFixed(2)} ${AppConstants.currency}';