Author constructor

Author({
  1. String? id,
  2. String? displayName,
  3. String? url,
  4. String? image,
})

Implementation

Author({
  this.id,
  this.displayName,
  this.url,
  this.image,
});