isObject method
Whether is an object.
Implementation
bool isObject()
{
return this._rawValue != null && !(this._rawValue is num) && !(this._rawValue is bool) && !(this._rawValue is String);
}
Whether is an object.
bool isObject()
{
return this._rawValue != null && !(this._rawValue is num) && !(this._rawValue is bool) && !(this._rawValue is String);
}