toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
      "id": id,
      "label": label,
      "description": description,
      "type": typeValues.reverse![type!],
      "value": value,
      "default": titleDefault,
      "tip": tip,
      "placeholder": placeholderValues.reverse![placeholder!],
      "options": options?.toJson(),
    };