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.
32 lines
546 B
32 lines
546 B
3 years ago
|
import 'package:flutter_upchunk/flutter_upchunk.dart';
|
||
|
|
||
|
class Uploading {
|
||
|
String id;
|
||
|
String title;
|
||
|
String path;
|
||
|
String aspect;
|
||
|
String thumbnail;
|
||
|
UpChunk token;
|
||
|
double pending;
|
||
|
String campaignID;
|
||
|
String muxuploadID;
|
||
|
String muxuploadURL;
|
||
|
String muxassetID;
|
||
|
bool isProcessing;
|
||
|
|
||
|
Uploading({
|
||
|
this.id,
|
||
|
this.title,
|
||
|
this.path,
|
||
|
this.aspect,
|
||
|
this.thumbnail,
|
||
|
this.token,
|
||
|
this.pending,
|
||
|
this.campaignID,
|
||
|
this.isProcessing,
|
||
|
this.muxuploadID,
|
||
|
this.muxuploadURL,
|
||
|
this.muxassetID,
|
||
|
});
|
||
|
}
|