UserDefinedVariableConfiguration.fromJson constructor

UserDefinedVariableConfiguration.fromJson(
  1. Map json_
)

Implementation

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