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.
 
 
 
 

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