ValueCount.fromJson constructor

ValueCount.fromJson(
  1. Map json_
)

Implementation

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