roundFourDecimals property

double get roundFourDecimals

Implementation

double get roundFourDecimals {
  num fac = pow(10, 4);
  return (this * fac).round() / fac;
}