Aggregate.fromJson constructor

Aggregate.fromJson(
  1. Map json_
)

Implementation

Aggregate.fromJson(core.Map json_)
  : this(
      count: json_['count'] as core.int?,
      group: json_['group'] as core.String?,
    );