isEntityIDType property

bool isEntityIDType

Returns true if this object is an int, BigInt or String.

Implementation

bool get isEntityIDType {
  var self = this;
  return isEntityIDPrimitiveType || self is BigInt;
}