StatisticValue.fromJson constructor

StatisticValue.fromJson(
  1. Map json_
)

Implementation

StatisticValue.fromJson(core.Map json_)
  : this(
      doubleValue: (json_['doubleValue'] as core.num?)?.toDouble(),
      floatValue: (json_['floatValue'] as core.num?)?.toDouble(),
      intValue: json_['intValue'] as core.String?,
      stringList: json_.containsKey('stringList')
          ? StringList.fromJson(
              json_['stringList'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      stringValue: json_['stringValue'] as core.String?,
    );