typeValueOrNull property

DartType? get typeValueOrNull

获取类型值,如果为 null 则返回 null。

Implementation

DartType? get typeValueOrNull {
  return isNull ? null : typeValue;
}