Author constructor

Author({
  1. String? type,
  2. String? context,
  3. String? name,
})

Implementation

Author({
  this.type,
  this.context,
  this.name,
});