RefSpec constructor

const RefSpec({
  1. required String typeName,
  2. bool nullable = false,
  3. String? description,
  4. List<Object>? examples,
  5. bool isDeprecated = false,
})

Creates a new RefSpec.

Implementation

const RefSpec({
  required this.typeName,
  super.nullable,
  super.description,
  super.examples,
  super.isDeprecated,
});