fromJson static method
Implementation
static ConditionParameterText fromJson(Map<String, dynamic> json) =>
ConditionParameterText(
value: json['value'],
formatOptionsHelper: json['format_options'] != null
? FormatOptionsHelper.fromJson(
json['format_options'],
)
: const FormatOptionsHelper(options: []),
);