converDoubleToString method
Implementation
String? converDoubleToString() {
try {
return split(".").first;
} catch (e) {
return "0";
}
}
String? converDoubleToString() {
try {
return split(".").first;
} catch (e) {
return "0";
}
}