toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (boolValue != null) 'boolValue': boolValue!,
  if (enumValue != null) 'enumValue': enumValue!,
  if (intValue != null) 'intValue': intValue!,
  if (key != null) 'key': key!,
  if (multiIntValues != null) 'multiIntValues': multiIntValues!,
  if (multiSelectValues != null) 'multiSelectValues': multiSelectValues!,
  if (multiStringValues != null) 'multiStringValues': multiStringValues!,
  if (secretValue != null) 'secretValue': secretValue!,
  if (stringValue != null) 'stringValue': stringValue!,
};