toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final hidden = this.hidden;
final modified = this.modified;
final restricted = this.restricted;
final starred = this.starred;
final trashed = this.trashed;
final viewed = this.viewed;
return {
'hidden': ?hidden,
'modified': ?modified,
'restricted': ?restricted,
'starred': ?starred,
'trashed': ?trashed,
'viewed': ?viewed,
};
}