AuthorProfile constructor

const AuthorProfile({
  1. required int reputation,
  2. required String userAvatar,
})

Implementation

const factory AuthorProfile({
  required int reputation,
  required String userAvatar,
}) = _AuthorProfile;