toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
      "id": id,
      "label": label,
      "description": description,
      "type": typeValues.reverse![type!],
      "value": value,
      "default": List<dynamic>.from(hideFundingMethodsDefault!.map((x) => x)),
      "tip": tip,
      "placeholder": placeholder,
      "options": options!.toJson(),
    };