toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (descriptivePhrase != null) 'descriptivePhrase': descriptivePhrase!,
  if (helpText != null) 'helpText': helpText!,
  if (hideDefaultValue != null) 'hideDefaultValue': hideDefaultValue!,
  if (inputDisplayOption != null) 'inputDisplayOption': inputDisplayOption!,
  if (isHidden != null) 'isHidden': isHidden!,
  if (label != null) 'label': label!,
  if (parameterNameOption != null)
    'parameterNameOption': parameterNameOption!,
  if (subSectionLabel != null) 'subSectionLabel': subSectionLabel!,
  if (uiPlaceholderText != null) 'uiPlaceholderText': uiPlaceholderText!,
};