Author constructor

Author({
  1. String? name,
  2. String? id,
  3. String? role,
})

Implementation

Author({
  this.name,
  this.id,
  this.role,
});