Returns a double or null if rawValue is not a double
null
double? get float => (_rawValue is double) ? _rawValue as double : null;