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,
);