AtomPerson constructor

AtomPerson({
  1. String? name,
  2. String? uri,
  3. String? email,
})

Constructor for creating an AtomPerson object.

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

  • name: The name of the person.
  • uri: The URI of the person.
  • email: The email address of the person.

Implementation

AtomPerson({this.name, this.uri, this.email});