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