strToDouble method
Implementation
double? strToDouble() {
try {
if (!this.checkIsIWhatDoubleStr()) {
return null;
}
return double.tryParse(this);
} catch (e) {
return null;
}
}
double? strToDouble() {
try {
if (!this.checkIsIWhatDoubleStr()) {
return null;
}
return double.tryParse(this);
} catch (e) {
return null;
}
}