InsightsValue.fromJson constructor

InsightsValue.fromJson(
  1. Map json_
)

Implementation

InsightsValue.fromJson(core.Map json_)
    : this(
        threshold: json_.containsKey('threshold')
            ? json_['threshold'] as core.String
            : null,
        value:
            json_.containsKey('value') ? json_['value'] as core.String : null,
      );