toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final anchorCell = this.anchorCell;
final heightPixels = this.heightPixels;
final offsetXPixels = this.offsetXPixels;
final offsetYPixels = this.offsetYPixels;
final widthPixels = this.widthPixels;
return {
'anchorCell': ?anchorCell,
'heightPixels': ?heightPixels,
'offsetXPixels': ?offsetXPixels,
'offsetYPixels': ?offsetYPixels,
'widthPixels': ?widthPixels,
};
}