基础组件库
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

share_data_model.dart 177 B

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