DataCollectionOptions.fromJson constructor

DataCollectionOptions.fromJson(
  1. Map json_
)

Implementation

DataCollectionOptions.fromJson(core.Map json_)
    : this(
        diagnosticsEventsEnabled:
            json_['diagnosticsEventsEnabled'] as core.bool?,
        healthMonitoringEnabled:
            json_['healthMonitoringEnabled'] as core.bool?,
        incidentLogsEnabled: json_['incidentLogsEnabled'] as core.bool?,
      );