getAliasedType abstract method
Returns the type that this typedef aliases.
Example
final alias = typedefType.getAliasedType();
print(alias.getName()); // Function
Implementation
TypeDeclaration getAliasedType();
Returns the type that this typedef aliases.
final alias = typedefType.getAliasedType();
print(alias.getName()); // Function
TypeDeclaration getAliasedType();