DataCollectionOptionsCommon.fromJson constructor

DataCollectionOptionsCommon.fromJson(
  1. Map json_
)

Implementation

DataCollectionOptionsCommon.fromJson(core.Map json_)
  : this(
      isDiagnosticsEventsEnabled:
          json_['isDiagnosticsEventsEnabled'] as core.bool?,
      isHealthMonitoringEnabled:
          json_['isHealthMonitoringEnabled'] as core.bool?,
      isIncidentLogsEnabled: json_['isIncidentLogsEnabled'] as core.bool?,
    );