toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final colorMode = this.colorMode;
final completeTime = this.completeTime;
final copyCount = this.copyCount;
final createTime = this.createTime;
final documentPageCount = this.documentPageCount;
final duplexMode = this.duplexMode;
final id = this.id;
final printer = this.printer;
final printerId = this.printerId;
final state = this.state;
final title = this.title;
final userEmail = this.userEmail;
final userId = this.userId;
return {
'colorMode': ?colorMode,
'completeTime': ?completeTime,
'copyCount': ?copyCount,
'createTime': ?createTime,
'documentPageCount': ?documentPageCount,
'duplexMode': ?duplexMode,
'id': ?id,
'printer': ?printer,
'printerId': ?printerId,
'state': ?state,
'title': ?title,
'userEmail': ?userEmail,
'userId': ?userId,
};
}