25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
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. }