convertDartClass function
Shorthand for convertDartType, for when you know the result will be an object type.
Implementation
@Deprecated('No replacement yet')
GraphQLObjectType? convertDartClass(Type type, [List<Type>? typeArguments]) {
return convertDartType(type, typeArguments) as GraphQLObjectType?;
}