asMoney method

String asMoney({
  1. bool hasDecimals = false,
  2. String currency = 'VND',
})

Implementation

String asMoney({
  bool hasDecimals = false,
  String currency = 'VND',
}) {
  return (this as num).asMoney(hasDecimals: hasDecimals, currency: currency);
}