isReflectedEnumType<T> static method

bool isReflectedEnumType<T>([
  1. Type? type
])

Implementation

static bool isReflectedEnumType<T>([Type? type]) {
  type ??= T;

  if (isBasicType<T>(type)) return false;

  return _isReflectedEnumTypeImpl(type);
}