ValueCount.fromJson constructor

ValueCount.fromJson(
  1. Map json_
)

Implementation

ValueCount.fromJson(core.Map json_)
    : this(
        count: json_.containsKey('count') ? json_['count'] as core.int : null,
        value: json_.containsKey('value') ? json_['value'] : null,
      );