toJson method

Map<String, dynamic> toJson()

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,
  };
}