getNumber method
Implementation
num? getNumber() {
final json = _json;
if (type != AttributesType.NUMBER || json == null) {
return null;
} else {
return num.tryParse(json);
}
}
num? getNumber() {
final json = _json;
if (type != AttributesType.NUMBER || json == null) {
return null;
} else {
return num.tryParse(json);
}
}