convertDartClass function

  1. @Deprecated('No replacement yet')
GraphQLObjectType? convertDartClass(
  1. Type type, [
  2. List<Type>? typeArguments
])

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?;
}