toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final density = this.density;
final displayId = this.displayId;
final height = this.height;
final name = this.name;
final refreshRate = this.refreshRate;
final state = this.state;
final width = this.width;
return {
'density': ?density,
'displayId': ?displayId,
'height': ?height,
'name': ?name,
'refreshRate': ?refreshRate,
'state': ?state,
'width': ?width,
};
}