25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

16 satır
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. }