Author constructor

Author({
  1. required String userName,
  2. required String companyTitle,
  3. String? avatarUrl,
})

Implementation

Author({
  required this.userName,
  required this.companyTitle,
  this.avatarUrl,
});