numValue property
int?
get
numValue
Implementation
int? get numValue {
//Remove all non-numeric and dot characters
return parseValue(value);
}
set
numValue
(int? n)
Implementation
set numValue(int? n) {
if (n == null) {
value = null;
return;
}
value = n.toString();
}