String format(double? n) { if (n == null || n.isNaN) { return "0.00"; } else { return n.toStringAsFixed(fixedLength); } }