GraphQLNumMaxType<T extends num> constructor

GraphQLNumMaxType<T extends num>(
  1. String name,
  2. T max, {
  3. String? description,
})

Implementation

GraphQLNumMaxType(String name, this.max, {String? description})
    : super(name, description: description ?? '$name with maximum of $max');