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

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