toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bottomPixels = this.bottomPixels;
final leftPixels = this.leftPixels;
final rightPixels = this.rightPixels;
final topPixels = this.topPixels;
return {
'bottomPixels': ?bottomPixels,
'leftPixels': ?leftPixels,
'rightPixels': ?rightPixels,
'topPixels': ?topPixels,
};
}