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