getGenericTypeArguments function

List<Type> getGenericTypeArguments(
  1. Type type
)

Extracts generic type arguments from a collection type

Implementation

List<Type> getGenericTypeArguments(Type type) {
  // In a code generation approach, this would be handled by the generator
  // For now, return empty list as generic type extraction requires compile-time generation
  return [];
}