class Author { String? name; Author({this.name}); factory Author.fromJson(Map json) => Author( name: json['name'] as String?, ); }