Transcript constructor

Transcript({
  1. String? url,
  2. String? type,
  3. String? language,
  4. String? rel,
})

Constructor for creating a Transcript object.

The constructor initializes a Transcript object with optional named parameters:

  • url: The URL attribute value of the transcript.
  • type: The type attribute value of the transcript.
  • language: The language attribute value of the transcript.
  • rel: The rel attribute value of the transcript.

Implementation

Transcript({
  this.url,
  this.type,
  this.language,
  this.rel,
});