AtomSource constructor

AtomSource({
  1. String? id,
  2. String? title,
  3. String? updated,
})

Constructor for creating an AtomSource object.

The constructor initializes an AtomSource object with the following named parameters:

  • id: The ID of the source.
  • title: The title of the source.
  • updated: The updated date and time of the source.

Implementation

AtomSource({
  this.id,
  this.title,
  this.updated,
});