基础组件库
 
 
 
 
 

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