AuthorInfo constructor

const AuthorInfo({
  1. required AuthorType type,
  2. required String name,
})

Implementation

const AuthorInfo({
  required this.type,
  required this.name
});