numValue property

num? get numValue

获取可选num,类型匹配才有值

Implementation

num? get numValue => _value is num ? _value as num : null;