AtomGenerator constructor

AtomGenerator(
  1. String? uri,
  2. String? version,
  3. String? value
)

Constructor for creating an AtomGenerator object.

The constructor initializes an AtomGenerator object with the following parameters:

  • uri: The URI of the generator.
  • version: The version of the generator.
  • value: The value of the generator.

Implementation

AtomGenerator(this.uri, this.version, this.value);