基础组件库
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.
 
 
 
 
 

14 lines
180 B

  1. class ShareDataModel {
  2. String title;
  3. String content;
  4. dynamic image;
  5. String url;
  6. ShareDataModel({
  7. this.title,
  8. this.content,
  9. this.image,
  10. this.url,
  11. });
  12. }