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