PageAuthor constructor

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

Implementation

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