toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attributeType = this.attributeType;
final controlPoints = this.controlPoints;
final fieldName = this.fieldName;
final interpolationType = this.interpolationType;
return {
'attributeType': ?attributeType,
'controlPoints': ?controlPoints,
'fieldName': ?fieldName,
'interpolationType': ?interpolationType,
};
}