trTRPriceFormat method

String trTRPriceFormat()

Implementation

String trTRPriceFormat() {
  final formatedPrice =
      '\₺ ' + NumberFormat('#,##0.00', 'tr_TR').format(this);
  if (this == 0) {
    return '₺0';
  }
  return formatedPrice;
}