isEntityIDType property

bool isEntityIDType

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

Implementation

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