toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final brightness = this.brightness;
final contrast = this.contrast;
final cropProperties = this.cropProperties;
final link = this.link;
final outline = this.outline;
final recolor = this.recolor;
final shadow = this.shadow;
final transparency = this.transparency;
return {
'brightness': ?brightness,
'contrast': ?contrast,
'cropProperties': ?cropProperties,
'link': ?link,
'outline': ?outline,
'recolor': ?recolor,
'shadow': ?shadow,
'transparency': ?transparency,
};
}