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