您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

16 行
286 B

  1. ///SelectionPopupModel is common model
  2. ///used for setting data into dropdowns
  3. class SelectionPopupModel {
  4. int? id;
  5. String title;
  6. dynamic value;
  7. bool isSelected;
  8. SelectionPopupModel({
  9. this.id,
  10. required this.title,
  11. this.value,
  12. this.isSelected = false,
  13. });
  14. }