getCurrency method

String getCurrency(
  1. num value,
  2. String? symbol
)

Implementation

String getCurrency(num value, String? symbol) {
  var price = value.toStringAsFixed(2);
  return "${symbol ?? ""}$price";
}