toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final descriptivePhrase = this.descriptivePhrase;
final helpText = this.helpText;
final hideDefaultValue = this.hideDefaultValue;
final inputDisplayOption = this.inputDisplayOption;
final isHidden = this.isHidden;
final label = this.label;
final parameterNameOption = this.parameterNameOption;
final subSectionLabel = this.subSectionLabel;
final uiPlaceholderText = this.uiPlaceholderText;
return {
'descriptivePhrase': ?descriptivePhrase,
'helpText': ?helpText,
'hideDefaultValue': ?hideDefaultValue,
'inputDisplayOption': ?inputDisplayOption,
'isHidden': ?isHidden,
'label': ?label,
'parameterNameOption': ?parameterNameOption,
'subSectionLabel': ?subSectionLabel,
'uiPlaceholderText': ?uiPlaceholderText,
};
}