formatRawNum property

String get formatRawNum

格式化数字,不使用千分位 小数位2位

Implementation

String get formatRawNum {
  return HbUtil.formatNum(
    this,
    digit: 2,
    needThousands: false,
    remainAvailable: false,
    showBracket: false,
  );
}