fromJson static method

ConditionParameterDouble fromJson(
  1. Map<String, dynamic> json
)
override

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: []),
    );