trTRPriceFormatWithoutTurkishCharacter method

String trTRPriceFormatWithoutTurkishCharacter()

Implementation

String trTRPriceFormatWithoutTurkishCharacter() {
  final formatedPrice = NumberFormat('#,###.00', 'tr_TR').format(this);
  if (this == 0) {
    return '₺0';
  }
  return formatedPrice;
}