Author constructor
const
Author({})
Implementation
const factory Author({
/// Name of the author
@JsonKey(name: 'name', required: true) required String name,
/// Avatar URL of the author
@JsonKey(name: 'avatarUrl') String? avatarUrl,
/// Id of the author
@JsonKey(name: 'authorId', required: true) required String authorId,
}) = _Author;