toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final alignment = this.alignment;
final alpha = this.alpha;
final blurRadius = this.blurRadius;
final color = this.color;
final propertyState = this.propertyState;
final rotateWithShape = this.rotateWithShape;
final transform = this.transform;
final type = this.type;
return {
'alignment': ?alignment,
'alpha': ?alpha,
'blurRadius': ?blurRadius,
'color': ?color,
'propertyState': ?propertyState,
'rotateWithShape': ?rotateWithShape,
'transform': ?transform,
'type': ?type,
};
}