VariableFormatValue.fromJson constructor

VariableFormatValue.fromJson(
  1. Map json_
)

Implementation

VariableFormatValue.fromJson(core.Map json_)
    : this(
        caseConversionType: json_.containsKey('caseConversionType')
            ? json_['caseConversionType'] as core.String
            : null,
        convertFalseToValue: json_.containsKey('convertFalseToValue')
            ? Parameter.fromJson(json_['convertFalseToValue']
                as core.Map<core.String, core.dynamic>)
            : null,
        convertNullToValue: json_.containsKey('convertNullToValue')
            ? Parameter.fromJson(json_['convertNullToValue']
                as core.Map<core.String, core.dynamic>)
            : null,
        convertTrueToValue: json_.containsKey('convertTrueToValue')
            ? Parameter.fromJson(json_['convertTrueToValue']
                as core.Map<core.String, core.dynamic>)
            : null,
        convertUndefinedToValue: json_.containsKey('convertUndefinedToValue')
            ? Parameter.fromJson(json_['convertUndefinedToValue']
                as core.Map<core.String, core.dynamic>)
            : null,
      );