numberToText static method

String numberToText(
  1. double value,
  2. bool wasInt
)

Implementation

static String numberToText(double value, bool wasInt) {
  return VlJson.formatNumber(value, 6);
}