toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final assignmentInfo = this.assignmentInfo;
final completed = this.completed;
final deleted = this.deleted;
final due = this.due;
final etag = this.etag;
final hidden = this.hidden;
final id = this.id;
final kind = this.kind;
final links = this.links;
final notes = this.notes;
final parent = this.parent;
final position = this.position;
final selfLink = this.selfLink;
final status = this.status;
final title = this.title;
final updated = this.updated;
final webViewLink = this.webViewLink;
return {
'assignmentInfo': ?assignmentInfo,
'completed': ?completed,
'deleted': ?deleted,
'due': ?due,
'etag': ?etag,
'hidden': ?hidden,
'id': ?id,
'kind': ?kind,
'links': ?links,
'notes': ?notes,
'parent': ?parent,
'position': ?position,
'selfLink': ?selfLink,
'status': ?status,
'title': ?title,
'updated': ?updated,
'webViewLink': ?webViewLink,
};
}