toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final configurationVariables = this.configurationVariables;
final kind = this.kind;
final managedProperty = this.managedProperty;
final productId = this.productId;
return {
'configurationVariables': ?configurationVariables,
'kind': ?kind,
'managedProperty': ?managedProperty,
'productId': ?productId,
};
}