ExternalDocs constructor

const ExternalDocs({
  1. String? description,
  2. required String url,
})

Implementation

const factory ExternalDocs({
  /// A description of the target documentation.
  String? description,

  /// The URL for the target documentation. This must be in the form of a URL.
  required String url,
}) = _ExternalDocs;