選択できるのは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. }