CohortReportSettings.fromJson constructor

CohortReportSettings.fromJson(
  1. Map _json
)

Implementation

CohortReportSettings.fromJson(core.Map _json)
    : this(
        accumulate: _json.containsKey('accumulate')
            ? _json['accumulate'] as core.bool
            : null,
      );