toCurrency method

String toCurrency({
  1. String? lang,
})

Implementation

String toCurrency({String? lang}) {
  return '${NumberFormat.decimalPattern().format(this)} VND';
}