isObject method

bool isObject()

Whether is an object.

Implementation

bool isObject()
{
  return this._rawValue != null && !(this._rawValue is num) && !(this._rawValue is bool) && !(this._rawValue is String);
}