fromJson static method

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

Implementation

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