toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final coverImage = this.coverImage;
final description = this.description;
final driveId = this.driveId;
final durationMillis = this.durationMillis;
final id = this.id;
final kind = this.kind;
final lastModifiedMillis = this.lastModifiedMillis;
final progressValue = this.progressValue;
final title = this.title;
final type = this.type;
final uniqueName = this.uniqueName;
return {
'coverImage': ?coverImage,
'description': ?description,
'driveId': ?driveId,
'durationMillis': ?durationMillis,
'id': ?id,
'kind': ?kind,
'lastModifiedMillis': ?lastModifiedMillis,
'progressValue': ?progressValue,
'title': ?title,
'type': ?type,
'uniqueName': ?uniqueName,
};
}