isVague method

bool isVague()

Gets a value indicating that the current value has more decimals than allowed.

Implementation

bool isVague() {
  return this.toStringOpt(decimals: 5) != this.toStringOpt(decimals: 4);
}