ValueCount.fromJson constructor
ValueCount.fromJson(
- 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,
);