formatWith method
format the current number using NumberFormat
Implementation
String formatWith(NumberFormat format) {
if (this == null) return '';
return format.format(this);
}
format the current number using NumberFormat
String formatWith(NumberFormat format) {
if (this == null) return '';
return format.format(this);
}