|
1234567891011121314151617 |
- import 'dart:typed_data';
-
- class ShareDataModel {
- String title;
- String content;
- Uint8List poster; // 海报
- List image; // 图片地址列表
- String url;
-
- ShareDataModel({
- this.title,
- this.content,
- this.image,
- this.url,
- this.poster,
- });
- }
|