withDescription method

  1. @override
RefSpec withDescription(
  1. String description
)
override

Creates a copy of this spec with the given description.

Implementation

@override
RefSpec withDescription(String description) => RefSpec(
      typeName: typeName,
      nullable: nullable,
      description: description,
      examples: examples,
      isDeprecated: isDeprecated,
    );