toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final cornerRadius = this.cornerRadius;
final strokeColor = this.strokeColor;
final type = this.type;
return {
'cornerRadius': ?cornerRadius,
'strokeColor': ?strokeColor,
'type': ?type,
};
}