boolean property

bool? boolean

Returns a bool or null if rawValue is not a bool

Implementation

bool? get boolean => (_rawValue is bool) ? _rawValue as bool : null;