/// Picture : "http://pic2.iqiyipic.com/image/20200902/65/f6/a_50181443_m_601_m3.jpg" /// Name : "绅士的品格" /// UpdateInfo : "更新:2年前" /// IsAttention : false class VideoAttentionModel { VideoAttentionModel({ String? picture, String? name, String? updateInfo, bool? attention,}){ _picture = picture; _name = name; _updateInfo = updateInfo; _attention = attention; } VideoAttentionModel.fromJson(dynamic json) { _picture = json['Picture']; _name = json['Name']; _updateInfo = json['UpdateInfo']; _attention = json['Attention']; } String? _picture; String? _name; String? _updateInfo; bool? _attention; String? get picture => _picture; String? get name => _name; String? get updateInfo => _updateInfo; bool? get attention => _attention; set attention(value) { _attention = value; } Map toJson() { final map = {}; map['Picture'] = _picture; map['Name'] = _name; map['UpdateInfo'] = _updateInfo; map['Attention'] = _attention; return map; } }