基础组件库
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

share_data_model.dart 400 B

há 3 anos
há 4 anos
há 4 anos
há 4 anos
12345678910111213141516171819202122
  1. import 'dart:typed_data';
  2. ///
  3. /// 1.纯文本content
  4. /// 2.分享链接 title image url ,content(可选)
  5. /// 3.纯图片/海报 poster/image
  6. ///
  7. class ShareDataModel {
  8. String title;
  9. String content;
  10. Uint8List poster; // 海报
  11. List<String> image; // 图片地址列表
  12. String url;
  13. ShareDataModel({
  14. this.title,
  15. this.content,
  16. this.image,
  17. this.url,
  18. this.poster,
  19. });
  20. }