基础组件库
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

18 行
273 B

  1. import 'dart:typed_data';
  2. class ShareDataModel {
  3. String title;
  4. String content;
  5. Uint8List poster; // 海报
  6. List image; // 图片地址列表
  7. String url;
  8. ShareDataModel({
  9. this.title,
  10. this.content,
  11. this.image,
  12. this.url,
  13. this.poster,
  14. });
  15. }