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