isPrimitiveValue property

bool isPrimitiveValue

Returns true if this object is a num, String or bool.

Implementation

bool get isPrimitiveValue {
  var self = this;
  return self is num || self is String || self is bool;
}