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