import 'package:hgdj/hj_model/actress_info.dart'; class ActressModel { ActressModel({ this.hasFollow, this.info, }); ActressModel.fromJson(dynamic json) { hasFollow = json['hasFollow']; if (json['info'] != null) { info = ActressInfo.fromJson(json['info']); } if (json['desc'] is List) { desc = (json['desc'] as List).map((e) => e.toString()).toList(); } } bool? hasFollow; ActressInfo? info; List? desc; }