parseAltura static method
Implementation
static double? parseAltura(dynamic value) {
if (value == null) return null;
try {
return double.parse(value.toString().replaceAll(',', '.'));
} catch (_) {
return null;
}
}
static double? parseAltura(dynamic value) {
if (value == null) return null;
try {
return double.parse(value.toString().replaceAll(',', '.'));
} catch (_) {
return null;
}
}