Formats this number as a price.
9.99.asPrice('USD'); // '$9.99'
String asPrice(String currencyCode, {String? locale}) { return PriceFormatter(locale: locale).format(this, currencyCode); }