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

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