fromJson static method

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

Implementation

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