ReportRowDimensionValue.fromJson constructor

ReportRowDimensionValue.fromJson(
  1. Map json_
)

Implementation

ReportRowDimensionValue.fromJson(core.Map json_)
  : this(
      displayLabel: json_['displayLabel'] as core.String?,
      value: json_['value'] as core.String?,
    );