You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MTMusic/lib/models/songlist_bean.dart

17 lines
301 B

class SonglistBean {
int? code;
String? msg;
int? id;
String? name;
SonglistBean.formMap(Map map) {
code = map['code'];
msg = map['msg'];
if (map['data'] == '') return;
Map? data = map['data'];
if (data == null) return;
id = map['id'];
name = map['name'];
}
}