fullName property

String get fullName

Implementation

String get fullName => (this as NamedTypeAnnotation).typeArguments.isEmpty ? name : "$name<${(this as NamedTypeAnnotation).typeArguments.map((i) => i.fullName).join(", ")}>";