Author constructor

Author({
  1. String? displayName,
  2. String? profilePhotoUri,
  3. String? type,
})

Implementation

Author({
  this.displayName,
  this.profilePhotoUri,
  this.type,
});