class TopicCreator { int? uid; String? face; String? name; TopicCreator({ this.uid, this.face, this.name, }); factory TopicCreator.fromJson(Map json) => TopicCreator( uid: json['uid'] as int?, face: json['face'] as String?, name: json['name'] as String?, ); Map toJson() => { 'uid': uid, 'face': face, 'name': name, }; }