Author constructor

Author({
  1. String? name,
  2. String? email,
  3. String? website,
})

Creates a new Author instance

Implementation

Author({this.name, this.email, this.website});