基础组件库

share_data_model.dart 180 B

4 years ago
12345678910111213
  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. }