isNum property

bool isNum

Returns true if the underlying value can be represented as num.

Implementation

bool get isNum =>
    ValueTypeUtils.isNumber(_valueType) ||
    ValueTypeUtils.isIndirectNumber(_valueType);