UserDefinedVariableConfiguration.fromJson constructor

UserDefinedVariableConfiguration.fromJson(
  1. Map json_
)

Implementation

UserDefinedVariableConfiguration.fromJson(core.Map json_)
    : this(
        dataType: json_.containsKey('dataType')
            ? json_['dataType'] as core.String
            : null,
        reportName: json_.containsKey('reportName')
            ? json_['reportName'] as core.String
            : null,
        variableType: json_.containsKey('variableType')
            ? json_['variableType'] as core.String
            : null,
      );