Author constructor

Author({
  1. required String name,
  2. required String email,
  3. String? url,
  4. AuthorType? type,
})

Creates a new Author object

Implementation

Author({required this.name, required this.email, this.url, this.type});