boolValue property

bool? get boolValue

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

Implementation

bool? get boolValue => _value is bool ? _value as bool : null;