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