基础组件库
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

share_data_model.dart 273 B

hace 4 años
hace 4 años
hace 4 años
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. }