integer property

int? integer

Returns a int or null if rawValue is not a int

Implementation

int? get integer => (_rawValue is int) ? _rawValue as int : null;