isLikeDynamic property

bool isLikeDynamic

Returns true if this is dynamic or Object?.

Implementation

bool get isLikeDynamic =>
    (isDartCoreObject && isNullableType) || this is DynamicType;