RespiratoryRateSleepSummaryStatistics.fromJson constructor

RespiratoryRateSleepSummaryStatistics.fromJson(
  1. Map json_
)

Implementation

RespiratoryRateSleepSummaryStatistics.fromJson(core.Map json_)
  : this(
      breathsPerMinute: (json_['breathsPerMinute'] as core.num?)?.toDouble(),
      signalToNoise: (json_['signalToNoise'] as core.num?)?.toDouble(),
      standardDeviation: (json_['standardDeviation'] as core.num?)
          ?.toDouble(),
    );