TO_STRING function
Implementation
String TO_STRING(dynamic value) {
if (value is double) return value.toString();
if (value is int) return value.toString();
if (value == 'null') return '';
if (value == null) return '';
return '';
}
String TO_STRING(dynamic value) {
if (value is double) return value.toString();
if (value is int) return value.toString();
if (value == 'null') return '';
if (value == null) return '';
return '';
}