TextWithTooltip.fromJson constructor

TextWithTooltip.fromJson(
  1. Map json_
)

Implementation

TextWithTooltip.fromJson(core.Map json_)
    : this(
        simpleTooltipValue: json_.containsKey('simpleTooltipValue')
            ? json_['simpleTooltipValue'] as core.String
            : null,
        simpleValue: json_.containsKey('simpleValue')
            ? json_['simpleValue'] as core.String
            : null,
        tooltipIconStyle: json_.containsKey('tooltipIconStyle')
            ? json_['tooltipIconStyle'] as core.String
            : null,
      );